Skip to content

Commit 18f451c

Browse files
committed
Fix account linking backend oauth url
1 parent e144ba0 commit 18f451c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/(authenticated)/settings/connections/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
async function beginLink(providerKey: string) {
8787
actionBusy = providerKey;
8888
try {
89-
window.location.href = `https://${PUBLIC_BACKEND_API_DOMAIN}/1/oauth/${providerKey}/authorize`;
89+
window.location.href = `https://${PUBLIC_BACKEND_API_DOMAIN}/1/account/connections/${providerKey}/link`;
9090
} catch (err) {
9191
await handleApiError(err);
9292
} finally {

0 commit comments

Comments
 (0)