diff --git a/frontend/src/components/debug/DebugToolbar.tsx b/frontend/src/components/debug/DebugToolbar.tsx index 74ff01e..795cc2d 100644 --- a/frontend/src/components/debug/DebugToolbar.tsx +++ b/frontend/src/components/debug/DebugToolbar.tsx @@ -64,8 +64,8 @@ export default function DebugToolbar() { key={tab} onClick={() => activeTab.set(tab)} className={`px-3 py-1 rounded text-xs uppercase font-medium transition-colors ${currentTab === tab - ? 'bg-gray-700 text-white' - : 'text-gray-400 hover:text-white' + ? 'bg-gray-700 text-white' + : 'text-gray-400 hover:text-white' }`} > {tab} @@ -96,8 +96,8 @@ export default function DebugToolbar() {
[{log.timestamp}] {log.type} @@ -121,8 +121,8 @@ export default function DebugToolbar() { {currentTab === 'backend' && (
{backendStatus === 'online' ? '● Online' : backendStatus === 'error' ? '✖ Error' : '● Checking...'} @@ -167,7 +167,7 @@ export default function DebugToolbar() {
{/* We force mount devtools panel here if possible */} - +
)}