From d511e4a75ca9d25623351af21cdb49e5df0ce7c4 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 25 Oct 2025 23:00:46 +0200 Subject: [PATCH] Comment log --- common/src/profiles/profile.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/profiles/profile.ts b/common/src/profiles/profile.ts index 27d39b36..9d0d05e0 100644 --- a/common/src/profiles/profile.ts +++ b/common/src/profiles/profile.ts @@ -4,7 +4,7 @@ import { User } from 'common/user' export type ProfileRow = Row<'profiles'> export type Profile = ProfileRow & { user: User } export const getProfileRow = async (userId: string, db: SupabaseClient) => { - console.debug('getProfileRow', userId) + // console.debug('getProfileRow', userId) const res = await run(db.from('profiles').select('*').eq('user_id', userId)) return res.data[0] }