+1
-2
src/views/settings-explore-feeds.tsx
+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