From f49c35563de845821699e8f891ed2da84be428f7 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Wed, 10 Sep 2025 07:47:39 -0500 Subject: [PATCH] Fix syntax --- frontend/src/FirstRun/AuthenticationRequiredModalContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/FirstRun/AuthenticationRequiredModalContent.tsx b/frontend/src/FirstRun/AuthenticationRequiredModalContent.tsx index 84aefb1354..fbb73dab54 100644 --- a/frontend/src/FirstRun/AuthenticationRequiredModalContent.tsx +++ b/frontend/src/FirstRun/AuthenticationRequiredModalContent.tsx @@ -54,7 +54,7 @@ export default function AuthenticationRequiredModalContent() { dispatch(fetchGeneralSettings()); return () => { - dispatch(clearPendingChanges({ section: \`settings.\${SECTION}\` })); + dispatch(clearPendingChanges({ section: `settings.${SECTION}` })); }; }, [dispatch]);