From f56423040bb6205be52653bbd4f07ac5fbaccd08 Mon Sep 17 00:00:00 2001 From: Gigi Date: Fri, 17 Oct 2025 12:28:04 +0200 Subject: [PATCH] feat(debug): add checkmark icon to debug logs button when enabled --- src/components/Debug.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/Debug.tsx b/src/components/Debug.tsx index 6ff29323..ae34b588 100644 --- a/src/components/Debug.tsx +++ b/src/components/Debug.tsx @@ -1,7 +1,7 @@ /* global __APP_VERSION__, __GIT_COMMIT__, __GIT_COMMIT_URL__, __RELEASE_URL__ */ import React, { useEffect, useMemo, useState } from 'react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' -import { faClock } from '@fortawesome/free-solid-svg-icons' +import { faClock, faCheck } from '@fortawesome/free-solid-svg-icons' import { Hooks } from 'applesauce-react' import { DebugBus, type DebugLogEntry } from '../utils/debugBus' @@ -98,7 +98,10 @@ const Debug: React.FC = () => {

Bunker Debug

- + Active pubkey: {pubkey || 'none'}