From 5e3bbabc8375693610f3cdb7ff2b80d8512e647d Mon Sep 17 00:00:00 2001 From: Dillon Redding Date: Sun, 2 Apr 2023 15:21:33 -0500 Subject: [PATCH] Fix Parsed tab error Fix error where Parsed tab's code block doesn't update after navigating --- src/components/Main.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Main.tsx b/src/components/Main.tsx index 7aaf398..6ca0976 100644 --- a/src/components/Main.tsx +++ b/src/components/Main.tsx @@ -57,8 +57,8 @@ export const Main: Component = () => { {error()!.message} - - {JSON.stringify(entity(), null, 2)} + + {(entity) => {JSON.stringify(entity, null, 2)}}