From 15c524edc72f0df88b69c10f68e01cb378a1f5e6 Mon Sep 17 00:00:00 2001 From: icegriffinguru Date: Fri, 21 Jul 2023 09:02:39 -0400 Subject: [PATCH 1/2] [ice] TB view 2 --- src/App.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 = () => { /> ))} } /> + } /> } /> From 1bfe4841a98f4c328d98eaeb86af38b5cd013dac Mon Sep 17 00:00:00 2001 From: icegriffinguru Date: Fri, 21 Jul 2023 09:07:46 -0400 Subject: [PATCH 2/2] [ice] TB view 3 --- src/pages/MyWallet.tsx | 2 ++ 1 file changed, 2 insertions(+) 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); })(); }