surface placement

This commit is contained in:
wass08
2026-02-18 16:26:17 +09:00
parent c0676f684e
commit e8fcc840d5
7 changed files with 12 additions and 9 deletions
@@ -14,7 +14,8 @@ export async function submitFeedback(
const session = await getSession()
const supabase = await createServerSupabaseClient()
const { error } = await supabase.from('feedback').insert({
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const { error } = await (supabase as any).from('feedback').insert({
id: createId('feedback'),
user_id: session?.user?.id ?? null,
message: trimmed,