Skip to content

Commit

Permalink
fix: dom nesting 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
pipisebastian committed Dec 5, 2024
1 parent c1f0697 commit 5fe0bd8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const MenuButton = () => {
onClick={handleMenuClick}
data-onboarding="menu-button"
>
<button className={menuItemWrapper}>
<div className={menuItemWrapper} role="button">
<MenuIcon />
<p className={textBox}>{name ?? "Nocta"}</p>
{/* <div className={nameWrapper}>
Expand All @@ -122,7 +122,7 @@ export const MenuButton = () => {
</div>
)}
</div> */}
</button>
</div>
<WorkspaceSelectModal isOpen={isOpen} userName={name} onInviteClick={handleInviteModal} />
<InviteModal
isOpen={isInviteModalOpen}
Expand Down

0 comments on commit 5fe0bd8

Please sign in to comment.