From 644fbd42dfe63cc3bad1880b2284deb13b0815ab Mon Sep 17 00:00:00 2001
From: mbaharip <62494292+mbahArip@users.noreply.github.com>
Date: Mon, 10 Mar 2025 22:09:01 +0700
Subject: [PATCH] fix: Add `Fragment` to `showGuideButton` conditional
rendering
---
src/components/layout/Navbar.tsx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/components/layout/Navbar.tsx b/src/components/layout/Navbar.tsx
index 7a3681b..f6858f0 100644
--- a/src/components/layout/Navbar.tsx
+++ b/src/components/layout/Navbar.tsx
@@ -256,7 +256,7 @@ export default function Navbar() {
className='mx-2 my-auto h-6'
/>
- {!!config.showGuideButton && (
+ {!!config.showGuideButton ? (
+ ) : (
+ <>>
)}