Skip to content

Commit

Permalink
fix: ensure font color of selected interests pill changed is white (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakrudrapaul authored Jul 10, 2023
1 parent 2c95ecd commit b778f11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ const UserSettingsPage = ({ user }: userSettingsPageProps) => {
{interestArray.map((topic, index) => (
<LanguagePill
onClick={() => handleSelectInterest(topic)}
classNames={`${(selectedInterest || []).includes(topic) && "bg-light-orange-10 text-white"}`}
classNames={`${(selectedInterest || []).includes(topic) && "bg-light-orange-10 !text-white"}`}
topic={topic}
key={index}
/>
Expand Down

0 comments on commit b778f11

Please sign in to comment.