It's the default already

This commit is contained in:
Manav Rathi
2025-01-07 13:52:41 +05:30
parent b5c7e9d6ac
commit 15283cbc73
2 changed files with 3 additions and 2 deletions

View File

@@ -555,11 +555,11 @@ const DoneFooter: React.FC = () => {
{uploadPhase == "done" &&
(finishedUploads?.get(UPLOAD_RESULT.FAILED)?.length > 0 ||
finishedUploads?.get(UPLOAD_RESULT.BLOCKED)?.length > 0 ? (
<Button variant="contained" fullWidth onClick={retryFailed}>
<Button fullWidth onClick={retryFailed}>
{t("RETRY_FAILED")}
</Button>
) : (
<Button variant="contained" fullWidth onClick={onClose}>
<Button fullWidth onClick={onClose}>
{t("close")}
</Button>
))}

View File

@@ -108,6 +108,7 @@ export const getComponents = (
MuiButton: {
defaultProps: {
// Change the default button variant from "text" to "contained".
variant: "contained",
},
styleOverrides: {