Skip to content

Commit

Permalink
fix(human-app): fix operator ui bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
KacperKoza343 committed Sep 30, 2024
1 parent b375a9f commit af9508d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,11 @@ export function EditExistingKeysSuccessPage() {
</Alert>
) : undefined
}
hiddenArrowButton
hiddenCancelButton
title={t('operator.editExistingKeysSuccess.title')}
>
<Grid container gap="2rem" marginTop="2rem">
<Grid container gap="2rem">
<Grid>
<Typography variant="subtitle1">
{t('operator.editExistingKeysSuccess.paragraph1')}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function ExistingKeysForm({
useResetMutationErrors(existingKeysMethods.watch, existingKeysMutation.reset);

return (
<Grid container gap="1.5rem">
<Grid container gap="2rem">
<div
style={{
width: '100%',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,15 @@ export function PendingKeysForm({
style={{
display: 'flex',
flexDirection: 'column',
gap: '1.5rem',
gap: '2rem',
}}
>
<EditPendingKeysForm existingKeysInitialState={keysData} />

<Button
fullWidth
loading={pendingKeysMutation.isPending}
sx={{ mt: '10px' }}
type="submit"
variant="contained"
>
Expand Down

0 comments on commit af9508d

Please sign in to comment.