From cc68e4241591c95631101e47f9c12ca13d25d301 Mon Sep 17 00:00:00 2001 From: Faisal Amir Date: Sat, 18 Nov 2023 18:34:48 +0700 Subject: [PATCH] Fix title screen should not camel case --- web/containers/Layout/TopBar/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/web/containers/Layout/TopBar/index.tsx b/web/containers/Layout/TopBar/index.tsx index e5429297e4..5ab4ebc846 100644 --- a/web/containers/Layout/TopBar/index.tsx +++ b/web/containers/Layout/TopBar/index.tsx @@ -10,7 +10,9 @@ const TopBar = () => {
- {viewStateName} + + {viewStateName.replace(/([A-Z])/g, ' $1').trim()} +
{/* Command without trigger interface */}