work-in-progress atproto PDS
typescript atproto pds atcute
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: normalize all whitespaces

Mary 8927302c 08123f8c

+1 -1
+1 -1
packages/danaus/src/utils/schema.ts
··· 61 61 ); 62 62 63 63 export const normalizeWhitespace = v.transform<string, string>((input) => { 64 - return input.replace(/\s+/, ' ').trim(); 64 + return input.replace(/\s+/g, ' ').trim(); 65 65 });