feat(right-manage-settings): add div wrapper

This commit is contained in:
RadoslavDimchev 2024-02-20 12:10:30 +02:00 committed by Emil Ivanichkov
parent 06fa469f12
commit cfa653749d
1 changed files with 2 additions and 2 deletions

View File

@ -8,11 +8,11 @@ const RightManageSettings = () => {
const isDeposit = false const isDeposit = false
return ( return (
<> <div style={{ flexGrow: 1 }}>
{isDefault && <DefaultPanel />} {isDefault && <DefaultPanel />}
{isMigrate && <MigratePanel />} {isMigrate && <MigratePanel />}
{isDeposit && <DepositPanel />} {isDeposit && <DepositPanel />}
</> </div>
) )
} }