@@ -523,15 +523,15 @@ const CreateGroupDialog: React.FC<{
523523 < DialogTitle > { t ( 'multiAccount.createGroup' ) } </ DialogTitle >
524524 < DialogContent >
525525 < Grid container spacing = { 2 } sx = { { mt : 1 } } >
526- < Grid item xs = { 12 } sm = { 6 } >
526+ < Grid size = { { xs : 12 , sm : 6 } } >
527527 < TextField
528528 fullWidth
529529 label = { t ( 'multiAccount.groupName' ) }
530530 value = { formData . name }
531531 onChange = { ( e ) => setFormData ( { ...formData , name : e . target . value } ) }
532532 />
533533 </ Grid >
534- < Grid item xs = { 12 } sm = { 6 } >
534+ < Grid size = { { xs : 12 , sm : 6 } } >
535535 < TextField
536536 fullWidth
537537 type = "color"
@@ -540,7 +540,7 @@ const CreateGroupDialog: React.FC<{
540540 onChange = { ( e ) => setFormData ( { ...formData , color : e . target . value } ) }
541541 />
542542 </ Grid >
543- < Grid item xs = { 12 } >
543+ < Grid size = { 12 } >
544544 < TextField
545545 fullWidth
546546 multiline
@@ -550,7 +550,7 @@ const CreateGroupDialog: React.FC<{
550550 onChange = { ( e ) => setFormData ( { ...formData , description : e . target . value } ) }
551551 />
552552 </ Grid >
553- < Grid item xs = { 12 } >
553+ < Grid size = { 12 } >
554554 < FormControl fullWidth >
555555 < InputLabel > { t ( 'multiAccount.selectWallets' ) } </ InputLabel >
556556 < Select
@@ -603,7 +603,7 @@ const ImportWalletDialog: React.FC<{
603603 < DialogTitle > { t ( 'multiAccount.importWallet' ) } </ DialogTitle >
604604 < DialogContent >
605605 < Grid container spacing = { 2 } sx = { { mt : 1 } } >
606- < Grid item xs = { 12 } >
606+ < Grid size = { 12 } >
607607 < TextField
608608 fullWidth
609609 label = { t ( 'multiAccount.publicKey' ) }
@@ -612,15 +612,15 @@ const ImportWalletDialog: React.FC<{
612612 placeholder = "Enter Solana public key..."
613613 />
614614 </ Grid >
615- < Grid item xs = { 12 } >
615+ < Grid size = { 12 } >
616616 < TextField
617617 fullWidth
618618 label = { t ( 'multiAccount.walletName' ) }
619619 value = { formData . name }
620620 onChange = { ( e ) => setFormData ( { ...formData , name : e . target . value } ) }
621621 />
622622 </ Grid >
623- < Grid item xs = { 12 } >
623+ < Grid size = { 12 } >
624624 < FormControl fullWidth >
625625 < InputLabel > { t ( 'multiAccount.assignToGroups' ) } </ InputLabel >
626626 < Select
@@ -673,15 +673,15 @@ const EditGroupDialog: React.FC<{
673673 < DialogTitle > { t ( 'multiAccount.editGroup' ) } </ DialogTitle >
674674 < DialogContent >
675675 < Grid container spacing = { 2 } sx = { { mt : 1 } } >
676- < Grid item xs = { 12 } sm = { 6 } >
676+ < Grid size = { { xs : 12 , sm : 6 } } >
677677 < TextField
678678 fullWidth
679679 label = { t ( 'multiAccount.groupName' ) }
680680 value = { formData . name }
681681 onChange = { ( e ) => setFormData ( { ...formData , name : e . target . value } ) }
682682 />
683683 </ Grid >
684- < Grid item xs = { 12 } sm = { 6 } >
684+ < Grid size = { { xs : 12 , sm : 6 } } >
685685 < TextField
686686 fullWidth
687687 type = "color"
@@ -690,7 +690,7 @@ const EditGroupDialog: React.FC<{
690690 onChange = { ( e ) => setFormData ( { ...formData , color : e . target . value } ) }
691691 />
692692 </ Grid >
693- < Grid item xs = { 12 } >
693+ < Grid size = { 12 } >
694694 < TextField
695695 fullWidth
696696 multiline
@@ -700,7 +700,7 @@ const EditGroupDialog: React.FC<{
700700 onChange = { ( e ) => setFormData ( { ...formData , description : e . target . value } ) }
701701 />
702702 </ Grid >
703- < Grid item xs = { 12 } >
703+ < Grid size = { 12 } >
704704 < FormControl fullWidth >
705705 < InputLabel > { t ( 'multiAccount.selectWallets' ) } </ InputLabel >
706706 < Select
@@ -751,7 +751,7 @@ const ExportDialog: React.FC<{
751751 < DialogTitle > { t ( 'multiAccount.exportData' ) } </ DialogTitle >
752752 < DialogContent >
753753 < Grid container spacing = { 2 } sx = { { mt : 1 } } >
754- < Grid item xs = { 12 } >
754+ < Grid size = { 12 } >
755755 < FormControl fullWidth >
756756 < InputLabel > { t ( 'multiAccount.format' ) } </ InputLabel >
757757 < Select
@@ -764,7 +764,7 @@ const ExportDialog: React.FC<{
764764 </ Select >
765765 </ FormControl >
766766 </ Grid >
767- < Grid item xs = { 12 } >
767+ < Grid size = { 12 } >
768768 < FormControlLabel
769769 control = {
770770 < Switch
@@ -775,7 +775,7 @@ const ExportDialog: React.FC<{
775775 label = { t ( 'multiAccount.includeTransactions' ) }
776776 />
777777 </ Grid >
778- < Grid item xs = { 12 } >
778+ < Grid size = { 12 } >
779779 < FormControlLabel
780780 control = {
781781 < Switch
@@ -786,7 +786,7 @@ const ExportDialog: React.FC<{
786786 label = { t ( 'multiAccount.includeMetadata' ) }
787787 />
788788 </ Grid >
789- < Grid item xs = { 12 } >
789+ < Grid size = { 12 } >
790790 < Typography variant = "body2" color = "text.secondary" >
791791 { selectedWallets . length > 0 && `${ selectedWallets . length } wallets selected` }
792792 { selectedGroups . length > 0 && `${ selectedGroups . length } groups selected` }
0 commit comments