Skip to content

Commit

Permalink
fix: resolve failing linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton van den Berg authored and Anton van den Berg committed Jun 8, 2020
1 parent ff061f6 commit d2f80c0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/components/drawerBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,16 @@
{children}
</Drawer>
) : (
<div
className={[
classes.drawerDev,
isEmpty ? classes.empty : '',
isPristine ? classes.pristine : '',
].join(' ')}
>
Drawer Sidebar
</div>
)}
<div
className={[
classes.drawerDev,
isEmpty ? classes.empty : '',
isPristine ? classes.pristine : '',
].join(' ')}
>
Drawer Sidebar
</div>
)}
</div>
);
})(),
Expand Down

0 comments on commit d2f80c0

Please sign in to comment.