Skip to content

Commit d511e4a

Browse files
committed
Comment log
1 parent 8fd9062 commit d511e4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/profiles/profile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { User } from 'common/user'
44
export type ProfileRow = Row<'profiles'>
55
export type Profile = ProfileRow & { user: User }
66
export const getProfileRow = async (userId: string, db: SupabaseClient) => {
7-
console.debug('getProfileRow', userId)
7+
// console.debug('getProfileRow', userId)
88
const res = await run(db.from('profiles').select('*').eq('user_id', userId))
99
return res.data[0]
1010
}

0 commit comments

Comments
 (0)