work-in-progress atproto PDS
typescript atproto pds atcute

chore: fmt

mary.my.id aef09948 d9b1e3be

verified
Changed files
+8 -6
packages
danaus
src
+5 -3
packages/danaus/src/background.ts
··· 27 27 return; 28 28 } 29 29 30 - this.#queue.add(() => task()).catch((err) => { 31 - console.error('background queue task failed:', err); 32 - }); 30 + this.#queue 31 + .add(() => task()) 32 + .catch((err) => { 33 + console.error('background queue task failed:', err); 34 + }); 33 35 } 34 36 35 37 /**
+3 -3
packages/danaus/src/web/primitives/accordion-header.tsx
··· 34 34 }); 35 35 36 36 const expandIconStyle = cva({ 37 - base: ['flex shrink-0 items-center', 'text-base-500 leading-base-500'], 37 + base: ['flex shrink-0 items-center', 'leading-base-500 text-base-500'], 38 38 variants: { 39 39 position: { 40 40 start: 'pr-2', 41 - end: 'grow shrink basis-0 justify-end pl-2', 41 + end: 'shrink grow basis-0 justify-end pl-2', 42 42 }, 43 43 }, 44 44 }); 45 45 46 46 const iconStyle = cva({ 47 - base: 'flex shrink-0 items-center pr-2 text-base-500 leading-base-500', 47 + base: 'leading-base-500 flex shrink-0 items-center pr-2 text-base-500', 48 48 }); 49 49 50 50 export interface AccordionHeaderProps {