Skip to content

Commit

Permalink
πŸ› Fixed a border bottom bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AdithyaBhat17 committed Mar 12, 2021
1 parent c210a01 commit 6ad95ff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions components/Habit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ interface HabitProps {
}

function Habit({ habit, onSelect }: HabitProps) {
console.log(habit.currentStreak);

return (
<Flex
cursor="pointer"
onClick={onSelect}
key={habit.id}
py="5"
borderBottom="1px solid"
borderColor="horizon"
justifyContent="space-between"
alignItems="center"
>
Expand Down

0 comments on commit 6ad95ff

Please sign in to comment.