From 2ace10c0584e813abc1a5d5254c98e9cd7cc6afd Mon Sep 17 00:00:00 2001 From: Isaac Wise Date: Sat, 10 Feb 2024 16:59:00 -0600 Subject: [PATCH] fix building again --- store/links.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/links.ts b/store/links.ts index d4b27b5..e191e25 100644 --- a/store/links.ts +++ b/store/links.ts @@ -186,7 +186,7 @@ const useLinkStore = create()((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();