Skip to content

Commit

Permalink
components: mobile nav data-cy
Browse files Browse the repository at this point in the history
  • Loading branch information
tbantle22 committed Mar 29, 2024
1 parent 5421901 commit 114fcb6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/components/src/Navbar/ForMobile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ function NavMenu(props: NavProps) {
</Btn>
}
/>
<div className={css.links}>{props.children}</div>
<div className={css.links} data-cy="mobile-navbar-links">
{props.children}
</div>
{props.mobileBottomLinks && (
<div className={css.bottomLinks} data-cy="mobile-navbar-social-links">
{props.mobileBottomLinks}
Expand Down

0 comments on commit 114fcb6

Please sign in to comment.