Skip to content

Commit

Permalink
Merge pull request #1622 from afwillia/PORTALS-3422
Browse files Browse the repository at this point in the history
PORTALS-3422: Fix dropdown menu
  • Loading branch information
afwillia authored Mar 6, 2025
2 parents 9e5ecf9 + 92a3e64 commit fd34c9c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions apps/SageAccountWeb/src/components/AccountSettingsTopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,16 +87,17 @@ const AccountSettingsTopBar: React.FC<AccountSettingsTopBarProps> = ({
id="menu-appbar"
anchorEl={anchorEl}
anchorOrigin={{
vertical: 'bottom',
vertical: 'top',
horizontal: 'right',
}}
keepMounted
transformOrigin={{
vertical: 'bottom',
vertical: 'top',
horizontal: 'right',
}}
open={isOpen}
onClose={handleClose}
sx={{ mt: '30px' }}
>
{accountSettingsPanelConfig.map((item: any, index: number) => (
<MenuItem
Expand Down

0 comments on commit fd34c9c

Please sign in to comment.