From 24ae412b642fafb07bf49d30fb10202c6e68ad48 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Thu, 20 Nov 2025 08:55:52 -0500 Subject: [PATCH] Fix --- extension/src/background/logging.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/extension/src/background/logging.ts b/extension/src/background/logging.ts index 89d9376e..55256c44 100644 --- a/extension/src/background/logging.ts +++ b/extension/src/background/logging.ts @@ -6,7 +6,11 @@ export function getReport( tabId: string | number, instanceId: number, ) { - chrome.storage.local.get(['s:hostname', 's:port', 's:secure'], (options) => { + chrome.storage.local.get<{ + 's:hostname': string | undefined; + 's:port': string | undefined; + 's:secure': string | undefined; + }>(['s:hostname', 's:port', 's:secure'], (options) => { if (!options['s:hostname'] || !options['s:port']) return; const url = `${options['s:secure'] ? 'https' : 'http'}://${ options['s:hostname']