Skip to content

Commit

Permalink
🐛 fix Theme indicator showing light and thi-light
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildmodeOne committed Sep 30, 2023
1 parent a2c4bca commit 1f9e726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rogue-thi-app/pages/personal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default function Personal () {

<ListGroup>

{themes.filter(item => item.style.includes(theme[0])).map(item => (
{themes.filter(item => item.style === theme[0]).map(item => (
<ListGroup.Item action onClick={() => setShowThemeModal(true)} key={item.style}>
<div className={styles.interaction_icon}>
<span className="text-muted">
Expand Down

0 comments on commit 1f9e726

Please sign in to comment.