Fix error in render method
Test / test (push) Failing after 53s
Details
Test / test (push) Failing after 53s
Details
This commit is contained in:
parent
1d3edec7bc
commit
16250ef533
|
|
@ -108,16 +108,17 @@ function TackUpNow({
|
|||
{messages.map((message, index) => (
|
||||
<div key={index}>JSON.stringify(message)</div>
|
||||
))}
|
||||
isInstalled ? (<div>Your Notifications</div>
|
||||
{isInstalled ? (
|
||||
<div>Your Notifications</div>
|
||||
) : (
|
||||
<InstallPrompts
|
||||
isMobileSafari={isMobileSafari}
|
||||
isSupported={isSupported}
|
||||
isIOS={isIOS}
|
||||
notificationsEnabled={false}
|
||||
onInstallComplete={() => setIsInstalled(true)}
|
||||
/>
|
||||
)
|
||||
<InstallPrompts
|
||||
isMobileSafari={isMobileSafari}
|
||||
isSupported={isSupported}
|
||||
isIOS={isIOS}
|
||||
notificationsEnabled={false}
|
||||
onInstallComplete={() => setIsInstalled(true)}
|
||||
/>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
</ClientOnly>
|
||||
|
|
|
|||
Loading…
Reference in New Issue