From 4042d477361b0b4877d9fe0e713a8d07ac15fa32 Mon Sep 17 00:00:00 2001 From: proddy Date: Sun, 14 Jun 2026 17:10:23 +0200 Subject: [PATCH] rename CommandsPage to Commands --- interface/src/app/main/Commands.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/app/main/Commands.tsx b/interface/src/app/main/Commands.tsx index c3f483260..ba0fe821b 100644 --- a/interface/src/app/main/Commands.tsx +++ b/interface/src/app/main/Commands.tsx @@ -83,7 +83,7 @@ const commandsTheme = { ` }; -const CommandsPage = () => { +const Commands = () => { const { LL } = useI18nContext(); const [numChanges, setNumChanges] = useState(0); const blocker = useBlocker(numChanges !== 0); @@ -309,4 +309,4 @@ const CommandsPage = () => { ); }; -export default CommandsPage; +export default Commands;