From d7703ceef44ff414af5685faa9cb1ced415db9a7 Mon Sep 17 00:00:00 2001 From: Gigi Date: Fri, 17 Oct 2025 12:29:09 +0200 Subject: [PATCH] style(debug): use regular HTML checkmark instead of FontAwesome icon --- src/components/Debug.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Debug.tsx b/src/components/Debug.tsx index a4ab88af..7fbed5cd 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, faCheck } from '@fortawesome/free-solid-svg-icons' +import { faClock } from '@fortawesome/free-solid-svg-icons' import { Hooks } from 'applesauce-react' import { DebugBus, type DebugLogEntry } from '../utils/debugBus' @@ -99,7 +99,7 @@ const Debug: React.FC = () => {

Bunker Debug