fix building again

This commit is contained in:
Isaac Wise 2024-02-10 16:59:00 -06:00
parent 4b8f4c4179
commit 2ace10c058

View File

@ -186,7 +186,7 @@ const useLinkStore = create<LinkStore>()((set) => ({
if (response.ok) {
set((state) => ({
links: state.links.filter((e) => !linkIds.includes(e.id)),
links: state.links.filter((e) => !linkIds.includes(e.id as number)),
}));
useTagStore.getState().setTags();
useCollectionStore.getState().setCollections();