fix: mutation of states (#256)

* feat: label grouping, fix: new states response

* fix: mutation of states
This commit is contained in:
Aaryan Khandelwal 2023-02-08 23:58:17 +05:30 committed by GitHub
parent bd399d6d1a
commit 8e3541b947
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 29 deletions

View file

@ -52,14 +52,13 @@ const StatesSettings: NextPage<UserAuth> = (props) => {
: null
);
const orderedStateGroups = orderStateGroups(states ?? {});
const statesList = getStatesList(orderStateGroups ?? {});
const statesList = getStatesList(orderedStateGroups ?? {});
return (
<>
<DeleteStateModal
isOpen={!!selectDeleteState}
data={statesList?.find((state) => state.id === selectDeleteState) ?? null}
data={statesList?.find((s) => s.id === selectDeleteState) ?? null}
onClose={() => setSelectDeleteState(null)}
/>
<AppLayout
@ -115,7 +114,7 @@ const StatesSettings: NextPage<UserAuth> = (props) => {
<div
key={state.id}
className={`flex items-center justify-between gap-2 border-b bg-gray-50 p-3 ${
Boolean(activeGroup !== key) ? "last:border-0" : ""
activeGroup !== key ? "last:border-0" : ""
}`}
>
<div className="flex items-center gap-2">