Skip to content

Commit

Permalink
🐛 fix styling for ssoMenu (#1424)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitdallas authored Oct 3, 2023
1 parent 0275e63 commit e73d2b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/app/layout/HeaderApp/SSOMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ export const SSOMenu: React.FC = () => {
}} /** this user dropdown is hidden on mobile sizes */
>
<Dropdown
isPlain
onSelect={onDropdownSelect}
isOpen={isDropdownOpen}
toggle={(toggleRef) => (
<MenuToggle
isFullHeight
ref={toggleRef}
id="sso-actions-toggle"
onClick={() => onDropdownToggle(!isDropdownOpen)}
Expand Down Expand Up @@ -75,6 +75,7 @@ export const SSOMenu: React.FC = () => {
history.push("/");
})
.catch((err) => {
console.error("Logout failed:", err);
history.push("/");
});
}
Expand Down

0 comments on commit e73d2b3

Please sign in to comment.