feat(debug): clarify button text to 'Show all applesauce debug logs'

This commit is contained in:
Gigi
2025-10-17 12:27:45 +02:00
parent 1f0f7fef5e
commit 4b91504a50

View File

@@ -98,7 +98,7 @@ const Debug: React.FC = () => {
<div className="mb-6">
<h2 className="text-2xl font-bold mb-2">Bunker Debug</h2>
<div className="flex items-center gap-2 mb-3">
<button className="btn btn-outline" onClick={toggleDebug}>{debugEnabled ? 'Disable' : 'Enable'} debug logs</button>
<button className="btn btn-outline" onClick={toggleDebug}>{debugEnabled ? 'Hide' : 'Show'} all applesauce debug logs</button>
<button className="btn btn-ghost" onClick={() => setLogs([])}>Clear logs</button>
<span className="opacity-70">Active pubkey:</span> <code className="text-sm">{pubkey || 'none'}</code>
</div>