Skip to content

Commit

Permalink
fixed profile dropdown issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tulsiojha committed Oct 9, 2024
1 parent 0ceedd3 commit b3fae39
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/apps/console/routes/_main+/_layout/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ const ProfileMenu = ({ hideProfileName }: { hideProfileName: boolean }) => {
<OptionList.Item
onClick={() => {
setOpen(false);
navigate(`/${account}/user-profile/account`);
setTimeout(() => {
navigate(`/${account}/user-profile/account`);
}, 200);
}}
>
Profile Settings
Expand Down

0 comments on commit b3fae39

Please sign in to comment.