personal web client for Bluesky
typescript solidjs bluesky atcute

fix: don't bother reconciling

mary.my.id 9a56e343 dddad542

verified
Changed files
+1 -2
src
+1 -2
src/views/settings-explore-feeds.tsx
··· 1 1 import { createMemo } from 'solid-js'; 2 - import { modifyMutable, reconcile } from 'solid-js/store'; 3 2 4 3 import { dequal } from '~/api/utils/dequal'; 5 4 ··· 45 44 46 45 const apply = () => { 47 46 if (currentAccount) { 48 - modifyMutable(currentAccount.preferences.feeds, reconcile(feeds())); 47 + currentAccount.preferences.feeds = feeds(); 49 48 } 50 49 }; 51 50