Skip to content

Commit 8df43f3

Browse files
[dashboard] Fix GitHub app integration URL in user settings (#19329)
* [dashboard] Fix GitHub app integration URL in user settings * fix url to `settings/applications` based on @AlexTugarev's comment
1 parent d2c0ed2 commit 8df43f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dashboard/src/user-settings/Integrations.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ function GitProviders() {
9797
const url = new URL(`https://${ap.host}`);
9898
switch (ap.type) {
9999
case AuthProviderType.GITHUB:
100-
url.pathname = "settings/developers";
100+
url.pathname = "settings/applications";
101101
break;
102102
case AuthProviderType.GITLAB:
103103
url.pathname = "-/profile/applications";

0 commit comments

Comments
 (0)