mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-06-16 17:49:09 +00:00
fix(design-system): fix styling regression from removing next/link (#168)
This commit is contained in:
parent
99952aa19f
commit
5e8876a90c
6 changed files with 28 additions and 24 deletions
|
@ -13,18 +13,14 @@ export const UserPopover = (props: UserPopoverProps) => (
|
|||
<Base>
|
||||
<UserAvatarGroup user={props.user} preventCollapse={true} />
|
||||
<NavAction>
|
||||
<a href="/user/settings">
|
||||
<CompletelyStylelessLink>
|
||||
Settings <GoGear />
|
||||
</CompletelyStylelessLink>
|
||||
</a>
|
||||
<CompletelyStylelessLink to="/user/settings">
|
||||
Settings <GoGear />
|
||||
</CompletelyStylelessLink>
|
||||
</NavAction>
|
||||
<NavAction>
|
||||
<a href="/machinery/logout">
|
||||
<CompletelyStylelessLink>
|
||||
Log Out <GoSignOut />
|
||||
</CompletelyStylelessLink>
|
||||
</a>
|
||||
<CompletelyStylelessLink to="/machinery/logout">
|
||||
Log Out <GoSignOut />
|
||||
</CompletelyStylelessLink>
|
||||
</NavAction>
|
||||
</Base>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue