diff --git a/src/lib/components/inputs/TagFilter.svelte b/src/lib/components/inputs/TagFilter.svelte index 5d82fc8..4648fd1 100644 --- a/src/lib/components/inputs/TagFilter.svelte +++ b/src/lib/components/inputs/TagFilter.svelte @@ -1,6 +1,6 @@
diff --git a/src/lib/index.ts b/src/lib/index.ts index f209ffe..3264a9e 100644 --- a/src/lib/index.ts +++ b/src/lib/index.ts @@ -25,4 +25,4 @@ export const volumeTags = ["Silent", "Quiet", "Some Noise", "Loud"]; export const wifiTags = ["Good WiFi", "Moderate WiFi", "Bad WiFi", "No WiFi"]; export const powerOutletTags = ["Many Outlets", "Some Outlets", "No Outlets"]; -export const allTags = [...availableStudySpaceTags, ...volumeTags, ...wifiTags, ...powerOutletTags] +export const allTags = [...availableStudySpaceTags, ...volumeTags, ...wifiTags, ...powerOutletTags]; diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 84356a1..3160ef7 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -4,37 +4,36 @@ import crossUrl from "$lib/assets/cross.svg"; import Navbar from "$lib/components/Navbar.svelte"; import TagFilter from "$lib/components/inputs/TagFilter.svelte"; - import {availableStudySpaceTags} from "$lib" - import {allTags} from "$lib" + import { allTags } from "$lib"; const { data } = $props(); - const { studySpaces, supabase } = $derived(data); - - let selectedTags = $state