diff --git a/dist/extension/challenge.html b/dist/challenge/index.html
similarity index 100%
rename from dist/extension/challenge.html
rename to dist/challenge/index.html
diff --git a/src/ts/lib/api/dispatcher.ts b/src/ts/lib/api/dispatcher.ts
index 8807ba0adb..422d13f879 100644
--- a/src/ts/lib/api/dispatcher.ts
+++ b/src/ts/lib/api/dispatcher.ts
@@ -222,7 +222,7 @@ class Dispatcher {
case 'accountLinkChallenge': {
const info = data.getClientinfo();
const challenge = data.getChallenge();
- const win = window.open(`./extension/challenge.html?challenge=${challenge}`, '', 'width=320,height=320');
+ const win = window.open(`./challenge/index.html?challenge=${challenge}`, '', 'width=320,height=320');
win.focus();
break;