Skip to content

Commit 985452a

Browse files
committed
correct import path
1 parent 944259f commit 985452a

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

packages/database/supabase/functions/create-group/deno.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
"@supabase/functions-js/edge-runtime": "jsr:@supabase/functions-js/edge-runtime.d.ts",
44
"@supabase/supabase-js": "jsr:@supabase/supabase-js@2",
55
"@supabase/functions-js": "jsr:@supabase/functions-js@2",
6-
"@repo/database/dbTypes": "../../../src/dbTypes.ts",
7-
"@repo/database/lib/contextFunctions": "../../../src/lib/contextFunctions.ts",
8-
"@repo/database/lib/client": "../../../src/lib/client.ts",
9-
"@repo/utils/lib/execContext": "../../../../utils/src/lib/execContext.ts"
6+
"@repo/database/lib/client": "../../../src/lib/client.ts"
107
}
118
}

packages/database/supabase/functions/create-group/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This enables autocomplete, go to definition, etc.
44

55
import "@supabase/functions-js/edge-runtime";
6-
import { createClient, UserResponse } from "@supabase/supabase-js";
6+
import { createClient, type UserResponse } from "@supabase/supabase-js";
77
import type { DGSupabaseClient } from "@repo/database/lib/client";
88

99
// The following lines are duplicated from apps/website/app/utils/llm/cors.ts

packages/database/supabase/functions/create-space/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"@repo/database/dbTypes": "../../../src/dbTypes.ts",
77
"@repo/database/lib/contextFunctions": "../../../src/lib/contextFunctions.ts",
88
"@repo/database/lib/client": "../../../src/lib/client.ts",
9-
"@repo/utils/lib/execContext": "../../../../utils/src/lib/execContext.ts"
9+
"@repo/utils/lib/execContext": "../../../../utils/src/execContext.ts"
1010
}
1111
}

0 commit comments

Comments
 (0)