feat: Default to "recently viewed" (#2390)
* feat: Default user to first collection on first app open * Default home tab to 'recently viewed' * fix: Styling of inactive tab
This commit is contained in:
@@ -13,7 +13,7 @@ type Props = {
|
||||
const NavLinkWithChildrenFunc = ({ to, exact = false, children, ...rest }) => (
|
||||
<Route path={to} exact={exact}>
|
||||
{({ match }) => (
|
||||
<NavLink to={to} {...rest}>
|
||||
<NavLink to={to} exact={exact} {...rest}>
|
||||
{children(match)}
|
||||
</NavLink>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user