We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fd9062 commit d511e4aCopy full SHA for d511e4a
common/src/profiles/profile.ts
@@ -4,7 +4,7 @@ import { User } from 'common/user'
4
export type ProfileRow = Row<'profiles'>
5
export type Profile = ProfileRow & { user: User }
6
export const getProfileRow = async (userId: string, db: SupabaseClient) => {
7
- console.debug('getProfileRow', userId)
+ // console.debug('getProfileRow', userId)
8
const res = await run(db.from('profiles').select('*').eq('user_id', userId))
9
return res.data[0]
10
}
0 commit comments