Remove contained from button

Signed-off-by: irma12 <irma@roadie.io>
This commit is contained in:
irma12
2021-09-13 09:21:29 +02:00
parent 61e9fcf406
commit 01bd068fb7
@@ -40,7 +40,7 @@ const useStyles = makeStyles<Theme>(theme => ({
padding: 0,
},
actionButtons: {
padding: theme.spacing(2),
padding: theme.spacing(2, 0),
},
}));
@@ -82,9 +82,7 @@ export const OAuthRequestDialog = () => {
</DialogContent>
<DialogActions classes={{ root: classes.actionButtons }}>
<Button variant="contained" color="secondary" onClick={handleRejectAll}>
Reject All
</Button>
<Button onClick={handleRejectAll}>Reject All</Button>
</DialogActions>
</Dialog>
);