© 2026 Hedgehog Software, LLC
export const fetchAvatarUrl = async (userId: string) => { const { data } = await supabase.storage .from('profile_pictures') .getPublicUrl(`${userId}`) console.log("avatar url:", data.publicUrl) }