File tree Expand file tree Collapse file tree 1 file changed +13
-6
lines changed
web/src/modules/shared/components/layout Expand file tree Collapse file tree 1 file changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -135,18 +135,25 @@ export const UserMenu = ({ userData }: { userData: LoggedUserData }) => {
135
135
} ,
136
136
} ) }
137
137
/>
138
- < button onClick = { ( ) => setIsEditingUsername ( false ) } >
138
+ < button
139
+ className = 'ml-1'
140
+ disabled = { isSubmitting }
141
+ type = 'submit'
142
+ >
139
143
< FontAwesomeIcon
140
- icon = { faClose }
144
+ icon = { faCheck }
141
145
size = 'lg'
142
- className = 'text-zinc-400 hover:text-red -500'
146
+ className = 'text-zinc-400 hover:text-green -500'
143
147
/>
144
148
</ button >
145
- < button disabled = { isSubmitting } type = 'submit' >
149
+ < button
150
+ className = 'ml-1'
151
+ onClick = { ( ) => setIsEditingUsername ( false ) }
152
+ >
146
153
< FontAwesomeIcon
147
- icon = { faCheck }
154
+ icon = { faClose }
148
155
size = 'lg'
149
- className = 'text-zinc-400 hover:text-green -500'
156
+ className = 'text-zinc-400 hover:text-red -500'
150
157
/>
151
158
</ button >
152
159
</ form >
You can’t perform that action at this time.
0 commit comments