From b3fae39c41152f509f17f0e22489a6d57e846f6a Mon Sep 17 00:00:00 2001 From: Bikash Date: Wed, 9 Oct 2024 15:00:21 +0545 Subject: [PATCH] fixed profile dropdown issue --- src/apps/console/routes/_main+/_layout/_layout.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/apps/console/routes/_main+/_layout/_layout.tsx b/src/apps/console/routes/_main+/_layout/_layout.tsx index f17edf276..24d1c7986 100644 --- a/src/apps/console/routes/_main+/_layout/_layout.tsx +++ b/src/apps/console/routes/_main+/_layout/_layout.tsx @@ -196,7 +196,9 @@ const ProfileMenu = ({ hideProfileName }: { hideProfileName: boolean }) => { { setOpen(false); - navigate(`/${account}/user-profile/account`); + setTimeout(() => { + navigate(`/${account}/user-profile/account`); + }, 200); }} > Profile Settings