From 527bea56d57f4f0835389871ce2c3b9d53f0bd38 Mon Sep 17 00:00:00 2001 From: Tom Lanser Date: Thu, 30 Nov 2023 16:33:19 +0100 Subject: [PATCH] Update apps/expo/app/_layout.tsx Co-authored-by: Jan --- apps/expo/app/_layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/expo/app/_layout.tsx b/apps/expo/app/_layout.tsx index 83c8733e..e0287e9c 100644 --- a/apps/expo/app/_layout.tsx +++ b/apps/expo/app/_layout.tsx @@ -63,7 +63,7 @@ export default function HomeLayout() { }) if (!walletKey) return - const agent = await initializeAgent(walletKey).catch((e) => { + const agent = await initializeAgent(walletKey).catch(() => { setAgentInitializationFailed(true) toast.show('Could not initialize agent.') })