Skip to content

Commit

Permalink
fix: quest listing page
Browse files Browse the repository at this point in the history
  • Loading branch information
Bensigo committed Oct 3, 2023
1 parent 7c7bb7c commit 1f11191
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/ui/quest/QuestHomeWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,7 @@ const Filter = ({
return (
<Box p={4}>
<ButtonGroup isAttached variant="solid">
<Button
colorScheme={selectedFilter === "all" ? "sage" : "gray"}
onClick={() => onChange("all")}
>
All
</Button>
<Button
<Button
colorScheme={selectedFilter === "active" ? "sage" : "gray"}
onClick={() => onChange("active")}
>
Expand All @@ -46,6 +40,12 @@ const Filter = ({
>
Inactive
</Button>
<Button
colorScheme={selectedFilter === "all" ? "sage" : "gray"}
onClick={() => onChange("all")}
>
All
</Button>
</ButtonGroup>
</Box>
);
Expand Down

0 comments on commit 1f11191

Please sign in to comment.