From 6ccc6f60fc85e665c8a07a169efbe8d09c9d9e8e Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 31 May 2022 01:09:58 +0200 Subject: Lint, rm unused code --- src/lib/stores/forums.ts | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) (limited to 'src/lib/stores/forums.ts') diff --git a/src/lib/stores/forums.ts b/src/lib/stores/forums.ts index 40a3f2c..0bf41f6 100644 --- a/src/lib/stores/forums.ts +++ b/src/lib/stores/forums.ts @@ -1,4 +1,4 @@ -import { createClient } from '@supabase/supabase-js' +import { createClient } from '@supabase/supabase-js'; import { single, collection } from './supabase'; import { supabase } from '$lib/config/config'; @@ -6,13 +6,20 @@ import type { Forum } from '$lib/data/types'; const client = createClient(supabase.url, supabase.key); -export const forum = (id: string, withTopics = false) => single(client - .from('forums') - .select(withTopics ? `*, +export const forum = (id: string, withTopics = false) => + single( + client + .from('forums') + .select( + withTopics + ? `*, topics ( * ) - `: '*' ) - .eq('id', id), - null); + ` + : '*' + ) + .eq('id', id), + null + ); export const forums = collection(client.from('forums').select('*'), []); -- cgit