diff --git a/src/App.tsx b/src/App.tsx
index 7119c72..88f2e5e 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -16,7 +16,7 @@ import {
sampleAuthenticatedDomains,
ELROND_NETWORK,
} from "config";
-import { PageNotFound, Unlock } from "pages";
+import { MyWallet, PageNotFound, Unlock } from "pages";
import { ItheumTrailblazer } from "pages/ItheumTrailblazer";
import { routes, routeNames } from "routes";
@@ -53,6 +53,7 @@ export const App = () => {
/>
))}
} />
+ } />
} />
diff --git a/src/pages/MyWallet.tsx b/src/pages/MyWallet.tsx
index 50c3a1d..6d34d10 100644
--- a/src/pages/MyWallet.tsx
+++ b/src/pages/MyWallet.tsx
@@ -220,6 +220,8 @@ export const MyWallet = () => {
signature: Buffer.from(signature, "hex"),
signer: loginMethod,
});
+
+ setIsTrailBlazer(true);
await processSignature(Number(targetNonce), targetMessageToBeSigned, signedMessage);
})();
}