Skip to content

Commit a0411a6

Browse files
committed
chore: filter ordering
1 parent f29a40d commit a0411a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/components/CasesDisplay/Filters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ const Filters: React.FC = () => {
7171
items={[
7272
{ value: JSON.stringify({}), text: "All Cases", dot: theme.primaryText },
7373
{ value: JSON.stringify({ ruled: false }), text: "In Progress", dot: theme.primaryBlue },
74-
{ value: JSON.stringify({ ruled: true }), text: "Closed", dot: theme.primaryPurple },
7574
{ value: JSON.stringify({ period: "appeal" }), text: "Appeal", dot: theme.tint },
75+
{ value: JSON.stringify({ ruled: true }), text: "Closed", dot: theme.primaryPurple },
7676
]}
7777
defaultValue={JSON.stringify({ ruled, period })}
7878
callback={handleStatusChange}

0 commit comments

Comments
 (0)