From 16250ef533d070cdc19ba851a6479e636bef5a8a Mon Sep 17 00:00:00 2001 From: Jeff Date: Sat, 12 Oct 2024 14:47:12 -0400 Subject: [PATCH] Fix error in render method --- app/routes/_index.tsx | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/app/routes/_index.tsx b/app/routes/_index.tsx index fa44787..4d25ada 100644 --- a/app/routes/_index.tsx +++ b/app/routes/_index.tsx @@ -108,16 +108,17 @@ function TackUpNow({ {messages.map((message, index) => (
JSON.stringify(message)
))} - isInstalled ? (
Your Notifications
+ {isInstalled ? ( +
Your Notifications
) : ( - setIsInstalled(true)} - /> - ) + setIsInstalled(true)} + /> + )} )}