From 653b1a7b3072880cc2a5f7f30cad957c3531c85b Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Fri, 31 May 2024 12:27:25 +0530 Subject: [PATCH] fix: project state setting state name remove camel case logic (#4652) --- web/components/states/project-setting-state-list-item.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/states/project-setting-state-list-item.tsx b/web/components/states/project-setting-state-list-item.tsx index afbf47f2b..b315f634a 100644 --- a/web/components/states/project-setting-state-list-item.tsx +++ b/web/components/states/project-setting-state-list-item.tsx @@ -54,7 +54,7 @@ export const StatesListItem: React.FC = observer((props) => {
-
{addSpaceIfCamelCase(state.name)}
+
{state.name}

{state.description}