Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
fix: weird spacing issue in quick add icon
Browse files Browse the repository at this point in the history
  • Loading branch information
vault-developer committed Jul 9, 2020
1 parent 5959f45 commit 14ef415
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/shared/components/navbar/Navbar.tsx
Expand Up @@ -19,7 +19,6 @@ const Navbar = () => {
}

const dividerAboveLabels = [
'patients.newPatient',
'scheduling.appointments.new',
'labs.requests.new',
'incidents.reports.new',
Expand All @@ -35,7 +34,7 @@ const Navbar = () => {
onClick: () => {
navigateTo(page.path)
},
dividerAbove: dividerAboveLabels.indexOf(page.label) > -1,
dividerAbove: dividerAboveLabels.includes(page.label),
}))
}

Expand Down

0 comments on commit 14ef415

Please sign in to comment.