From fb84c1cf615a256909882f729470aee7b46b08a1 Mon Sep 17 00:00:00 2001 From: Jason Rasmussen Date: Thu, 26 Mar 2026 13:22:31 -0400 Subject: [PATCH] chore: remove unused file (#27202) --- web/src/lib/stores/album-asset-selection.store.ts | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 web/src/lib/stores/album-asset-selection.store.ts diff --git a/web/src/lib/stores/album-asset-selection.store.ts b/web/src/lib/stores/album-asset-selection.store.ts deleted file mode 100644 index a99e2baaca..0000000000 --- a/web/src/lib/stores/album-asset-selection.store.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { writable } from 'svelte/store'; - -function createAlbumAssetSelectionStore() { - const isAlbumAssetSelectionOpen = writable(false); - return { - isAlbumAssetSelectionOpen, - }; -} - -export const albumAssetSelectionStore = createAlbumAssetSelectionStore();