From d7a874d0fb6b5a62521bcdf958128e33df000076 Mon Sep 17 00:00:00 2001 From: William Grant Date: Wed, 5 Jun 2024 15:16:59 +1000 Subject: [PATCH] fix: specify seconds in onion status glow duration comment --- ts/components/dialog/OnionStatusPathDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/dialog/OnionStatusPathDialog.tsx b/ts/components/dialog/OnionStatusPathDialog.tsx index b5b1d84ec..96c328a43 100644 --- a/ts/components/dialog/OnionStatusPathDialog.tsx +++ b/ts/components/dialog/OnionStatusPathDialog.tsx @@ -219,7 +219,7 @@ export const ActionPanelOnionStatusLight = (props: { const firstPathLength = useFirstOnionPathLength(); const isOnline = useIsOnline(); - const glowDuration = Number(THEME_GLOBALS['--duration-onion-status-glow']); // 10 + const glowDuration = Number(THEME_GLOBALS['--duration-onion-status-glow']); // 10 seconds // Set icon color based on result const errorColor = 'var(--button-path-error-color)';