Skip to content

Commit

Permalink
Shift position of COE categories exclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
ruchernchong committed Jun 30, 2024
1 parent fec3dc1 commit 96b81dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/coe/ShowHideCOECategories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ export const ShowHideCOECategories = () => {
const setCategories = useSetAtom(showCategoriesAtom);

return (
<div className="flex flex-col items-center">
<div className="flex flex-col">
<div className="prose">
<h3>Excluded Categories</h3>
</div>
<div className="flex items-center gap-x-4">
<div className="flex flex-col">
{EXCLUDED_CATEGORIES.map((category) => {
return (
<Fragment key={category}>
<div key={category} className="flex items-center gap-2">
<Checkbox
id={category}
value={category}
Expand All @@ -33,7 +33,7 @@ export const ShowHideCOECategories = () => {
}}
/>
<label htmlFor={category}>{category}</label>
</Fragment>
</div>
);
})}
</div>
Expand Down

0 comments on commit 96b81dc

Please sign in to comment.