Skip to content

Commit

Permalink
fix active color button
Browse files Browse the repository at this point in the history
  • Loading branch information
wbglaeser committed Jun 7, 2024
1 parent 2fb7f9d commit 47ce9ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import VStack from "../../../components/VStack";
import HStack from "../../../components/HStack";

const OnboardingSectionsItem = ({section, entityData, active, completed}) => {
const backgroundColor = active ? yellow[600] : (completed ? green[500] : 'rgba(0, 0, 0, 0.1)')
const backgroundColor = completed ? green[600] : (active ? yellow[500] : 'rgba(0, 0, 0, 0.1)')

return (
<VStack>
Expand Down

0 comments on commit 47ce9ee

Please sign in to comment.