From 44a48f77dc19f2ed6003963d5140c6939708b481 Mon Sep 17 00:00:00 2001 From: abhishek-p-s Date: Wed, 24 Jan 2024 10:05:03 +0530 Subject: [PATCH] [#1064] unable to click the navigation beside the Dashboard menu fixed --- frontend/src/components/layout/Header.jsx | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/frontend/src/components/layout/Header.jsx b/frontend/src/components/layout/Header.jsx index 85f80685b..4ba39da59 100644 --- a/frontend/src/components/layout/Header.jsx +++ b/frontend/src/components/layout/Header.jsx @@ -73,32 +73,36 @@ const Header = ({ className = "header", ...props }) => { { key: "controlCenter", label: ( -
- {text?.controlCenter} -
+ + {text?.controlCenter} + ), }, { key: "profile", label: ( -
- {text?.myProfile} -
+ + {text?.myProfile} + ), }, { key: "signOut", danger: true, label: ( -
{ signOut(); }} > - {text?.signOut} -
+ {text?.signOut} + ), }, ];