From 8fac23c078962769aa77ba268840a52709baa4ce Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Sat, 18 Jan 2025 21:53:38 +0100 Subject: [PATCH] refactor: make function private --- apps/client/src/views/cuesheet/cuesheet.options.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/views/cuesheet/cuesheet.options.ts b/apps/client/src/views/cuesheet/cuesheet.options.ts index a128f16cd..0046f805d 100644 --- a/apps/client/src/views/cuesheet/cuesheet.options.ts +++ b/apps/client/src/views/cuesheet/cuesheet.options.ts @@ -76,7 +76,7 @@ type CuesheetOptions = { * Utility extract the view options from URL Params * the names and fallbacks are manually matched with cuesheetOptions */ -export function getOptionsFromParams(searchParams: URLSearchParams): CuesheetOptions { +function getOptionsFromParams(searchParams: URLSearchParams): CuesheetOptions { // we manually make an object that matches the key above return { showActionMenu: isStringBoolean(searchParams.get('showActionMenu')),