We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7a30b3 commit 0f97c18Copy full SHA for 0f97c18
public/callback/main.js
@@ -24,11 +24,11 @@ window.onload = async function () {
24
25
const token = localStorage.getItem("gitlab-api-token");
26
if (token) {
27
- window.location = "/dashboard/";
+ window.location = "../dashboard/";
28
return;
29
} else {
30
alert("Please set up the GitLab connection, then go to the dashboard!");
31
- window.location = "/gitlab-setup/";
+ window.location = "../gitlab-setup/";
32
33
}
34
public/gitlab-setup/main.js
@@ -15,7 +15,7 @@ window.onload = async function () {
15
const token = tokenInput.value.trim();
16
17
if (token === savedToken) {
18
- window.location = "/";
+ window.location = "../";
19
20
21
0 commit comments