File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,20 @@ const UserSidebarMenu = ({ user }: { user?: User }) => {
51
51
const userMenuItems = useMemo < ( ActionButtonProps | 'break' ) [ ] > (
52
52
( ) =>
53
53
[
54
+ {
55
+ id : 'account' ,
56
+ Element : 'externalLink' ,
57
+ to : withSiteBaseURL ( '/account' ) ,
58
+ children : (
59
+ < >
60
+ < span className = "flex-1" > Manage Zoo account</ span >
61
+ < CustomIcon
62
+ name = "link"
63
+ className = "w-3 h-3 text-chalkboard-70 dark:text-chalkboard-40"
64
+ />
65
+ </ >
66
+ ) ,
67
+ } ,
54
68
{
55
69
id : 'settings' ,
56
70
Element : 'button' ,
@@ -81,20 +95,6 @@ const UserSidebarMenu = ({ user }: { user?: User }) => {
81
95
navigate ( targetPath )
82
96
} ,
83
97
} ,
84
- {
85
- id : 'account' ,
86
- Element : 'externalLink' ,
87
- to : withSiteBaseURL ( '/account' ) ,
88
- children : (
89
- < >
90
- < span className = "flex-1" > Manage account</ span >
91
- < CustomIcon
92
- name = "link"
93
- className = "w-3 h-3 text-chalkboard-70 dark:text-chalkboard-40"
94
- />
95
- </ >
96
- ) ,
97
- } ,
98
98
'break' ,
99
99
{
100
100
id : 'request-feature' ,
You can’t perform that action at this time.
0 commit comments