Fixed class override issue (#533)

This commit is contained in:
Alex
2020-12-21 17:37:51 -06:00
committed by GitHub
parent e3c6e22b4e
commit e5c96a0787
2 changed files with 2 additions and 2 deletions

View File

@@ -249,7 +249,7 @@ const ListObjects = ({
xhr.open("POST", uploadUrl, true);
xhr.withCredentials = false;
xhr.onload = function(event) {
xhr.onload = function (event) {
if (
xhr.status === 401 ||
xhr.status === 403 ||

View File

@@ -59,7 +59,7 @@ const styles = (theme: Theme) =>
createStyles({
root: {
display: "flex",
"& .MuiPaper-root": {
"& .MuiPaper-root.MuiSnackbarContent-root": {
borderRadius: "0px 0px 15px 15px",
},
},