Skip to content

Commit e744d18

Browse files
committed
fix: deploy
1 parent 7b54e57 commit e744d18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/database/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { createClient } from "@supabase/supabase-js";
22

33
export const db = createClient(
4-
process.env.NEXT_PUBLIC_SUPABASE_URI!,
5-
process.env.NEXT_PUBLIC_SUPABASE_KEY!
4+
process.env.NEXT_PUBLIC_SUPABASE_URI as string,
5+
process.env.NEXT_PUBLIC_SUPABASE_KEY as string
66
);
77

88
export {

0 commit comments

Comments
 (0)