Skip to content

Commit 1a8f2db

Browse files
authored
Merge pull request #10 from metabase/move-jwt-provider-to-auth-provider
2 parents cc3f0a7 + 54cdb59 commit 1a8f2db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# FRONTEND
22
PORT=3100
33
VITE_METABASE_INSTANCE_URL="http://localhost:3000"
4-
VITE_JWT_PROVIDER_URI="http://localhost:9090/sso/metabase"
4+
VITE_AUTH_PROVIDER_URI="http://localhost:9090/sso/metabase"
55

66
# BACKEND
77
BACKEND_PORT=9090

client/src/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
// Configuration
99
const config = defineEmbeddingSdkConfig({
1010
metabaseInstanceUrl: import.meta.env.VITE_METABASE_INSTANCE_URL,
11-
jwtProviderUri: import.meta.env.VITE_JWT_PROVIDER_URI,
11+
authProviderUri: import.meta.env.VITE_AUTH_PROVIDER_URI,
1212
});
1313

1414
const questionId = 14;

0 commit comments

Comments
 (0)