From 16429522c33150eb89eb355dbd107a4908b974a9 Mon Sep 17 00:00:00 2001 From: "Mark S. Miller" Date: Sun, 11 Sep 2022 20:04:42 -0700 Subject: [PATCH] fix: switch default to smallcaps --- packages/marshal/src/marshal.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/marshal/src/marshal.js b/packages/marshal/src/marshal.js index c9ef08a563..4ca7e3558e 100644 --- a/packages/marshal/src/marshal.js +++ b/packages/marshal/src/marshal.js @@ -55,7 +55,8 @@ export const makeMarshal = ( console.log('Temporary logging of sent error', err), // Default to 'capdata' because it was implemented first. // Sometimes, ontogeny does recapitulate phylogeny ;) - serializeBodyFormat = 'capdata', + // See what breaks if defaulting to `'smallcaps'`. + serializeBodyFormat = 'smallcaps', } = {}, ) => { assert.typeof(marshalName, 'string');