3
3
import Button from "@mui/material/Button" ;
4
4
import { useForm , FormProvider , useFormState } from "react-hook-form" ;
5
5
import Container from "@mui/material/Container" ;
6
- import Grid from "@mui/material/Grid " ;
6
+ import Grid from "@mui/material/Grid2 " ;
7
7
import Typography from "@mui/material/Typography" ;
8
8
import FormTextInput from "@/components/form/text-input/form-text-input" ;
9
9
import * as yup from "yup" ;
@@ -204,40 +204,40 @@ function FormEditUser() {
204
204
< Container maxWidth = "xs" >
205
205
< form onSubmit = { onSubmit } >
206
206
< Grid container spacing = { 2 } mb = { 3 } mt = { 3 } >
207
- < Grid item xs = { 12 } >
207
+ < Grid size = { { xs : 12 } } >
208
208
< Typography variant = "h6" >
209
209
{ t ( "admin-panel-users-edit:title1" ) }
210
210
</ Typography >
211
211
</ Grid >
212
- < Grid item xs = { 12 } >
212
+ < Grid size = { { xs : 12 } } >
213
213
< FormAvatarInput < EditUserFormData > name = "photo" testId = "photo" />
214
214
</ Grid >
215
215
216
- < Grid item xs = { 12 } >
216
+ < Grid size = { { xs : 12 } } >
217
217
< FormTextInput < EditUserFormData >
218
218
name = "email"
219
219
testId = "email"
220
220
label = { t ( "admin-panel-users-edit:inputs.email.label" ) }
221
221
/>
222
222
</ Grid >
223
223
224
- < Grid item xs = { 12 } >
224
+ < Grid size = { { xs : 12 } } >
225
225
< FormTextInput < EditUserFormData >
226
226
name = "firstName"
227
227
testId = "first-name"
228
228
label = { t ( "admin-panel-users-edit:inputs.firstName.label" ) }
229
229
/>
230
230
</ Grid >
231
231
232
- < Grid item xs = { 12 } >
232
+ < Grid size = { { xs : 12 } } >
233
233
< FormTextInput < EditUserFormData >
234
234
name = "lastName"
235
235
testId = "last-name"
236
236
label = { t ( "admin-panel-users-edit:inputs.lastName.label" ) }
237
237
/>
238
238
</ Grid >
239
239
240
- < Grid item xs = { 12 } >
240
+ < Grid size = { { xs : 12 } } >
241
241
< FormSelectInput < EditUserFormData , Pick < Role , "id" > >
242
242
name = "role"
243
243
testId = "role"
@@ -257,7 +257,7 @@ function FormEditUser() {
257
257
/>
258
258
</ Grid >
259
259
260
- < Grid item xs = { 12 } >
260
+ < Grid size = { { xs : 12 } } >
261
261
< EditUserFormActions />
262
262
< Box ml = { 1 } component = "span" >
263
263
< Button
@@ -326,21 +326,21 @@ function FormChangePasswordUser() {
326
326
< Container maxWidth = "xs" >
327
327
< form onSubmit = { onSubmit } >
328
328
< Grid container spacing = { 2 } mb = { 3 } mt = { 3 } >
329
- < Grid item xs = { 12 } >
329
+ < Grid size = { { xs : 12 } } >
330
330
< Typography variant = "h6" >
331
331
{ t ( "admin-panel-users-edit:title2" ) }
332
332
</ Typography >
333
333
</ Grid >
334
334
335
- < Grid item xs = { 12 } >
335
+ < Grid size = { { xs : 12 } } >
336
336
< FormTextInput < ChangeUserPasswordFormData >
337
337
name = "password"
338
338
type = "password"
339
339
label = { t ( "admin-panel-users-edit:inputs.password.label" ) }
340
340
/>
341
341
</ Grid >
342
342
343
- < Grid item xs = { 12 } >
343
+ < Grid size = { { xs : 12 } } >
344
344
< FormTextInput < ChangeUserPasswordFormData >
345
345
name = "passwordConfirmation"
346
346
label = { t (
@@ -350,7 +350,7 @@ function FormChangePasswordUser() {
350
350
/>
351
351
</ Grid >
352
352
353
- < Grid item xs = { 12 } >
353
+ < Grid size = { { xs : 12 } } >
354
354
< ChangePasswordUserFormActions />
355
355
< Box ml = { 1 } component = "span" >
356
356
< Button
0 commit comments