Skip to content

Commit 2721b12

Browse files
Merge pull request #169 from appwrite/fix-qa-v17
fix: QA v17
2 parents 48dde69 + bb4d13a commit 2721b12

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

src/routes/console/organization-[organization]/header.svelte

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
</button>
5656
<svelte:fragment slot="list">
5757
{#each $organizationList.teams as org}
58-
<DropListLink href={`${base}/console/organization-${org.$id}`}>
58+
<DropListLink
59+
href={`${base}/console/organization-${org.$id}`}
60+
on:click={() => (showDropdown = false)}>
5961
{org.name}
6062
</DropListLink>
6163
{/each}

src/routes/console/project-[project]/auth/appleOAuth.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
<CopyInput
8585
value={`${
8686
sdkForConsole.client.config.endpoint
87-
}/account/session/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
87+
}/account/sessions/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
8888
</div>
8989
</FormList>
9090
<svelte:fragment slot="footer">

src/routes/console/project-[project]/auth/auth0OAuth.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<CopyInput
9494
value={`${
9595
sdkForConsole.client.config.endpoint
96-
}/account/session/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
96+
}/account/sessions/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
9797
</div>
9898
</FormList>
9999
<svelte:fragment slot="footer">

src/routes/console/project-[project]/auth/mainOAuth.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
<CopyInput
8585
value={`${
8686
sdkForConsole.client.config.endpoint
87-
}/account/session/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
87+
}/account/sessions/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
8888
</div>
8989
</FormList>
9090
<svelte:fragment slot="footer">

src/routes/console/project-[project]/auth/microsoftOAuth.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
<CopyInput
9494
value={`${
9595
sdkForConsole.client.config.endpoint
96-
}/account/session/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
96+
}/account/sessions/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
9797
</div>
9898
</FormList>
9999
<svelte:fragment slot="footer">

src/routes/console/project-[project]/auth/oktaOAuth.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
<CopyInput
103103
value={`${
104104
sdkForConsole.client.config.endpoint
105-
}/account/session/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
105+
}/account/sessions/oauth2/callback/${provider.name.toLocaleLowerCase()}/${projectId}`} />
106106
</div>
107107
</FormList>
108108
<svelte:fragment slot="footer">

0 commit comments

Comments
 (0)