Skip to content

Commit 336d7ce

Browse files
committed
changed checkbox icon to prevent confusion
1 parent 4f47f49 commit 336d7ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ActionBar/SourceFetchStatusIcon/SourceFetchStatusIcon.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import CheckBoxIcon from "@mui/icons-material/CheckBox";
1+
import CheckIcon from '@mui/icons-material/Check';
22
import CancelIcon from "@mui/icons-material/Cancel";
33
import { Tooltip } from "@mui/material";
44
import PropTypes from "prop-types";
@@ -20,7 +20,7 @@ function SourceFetchStatusIcon({ context, source, proxyUrl }) {
2020
if (status) {
2121
return (
2222
<Tooltip title="Query was succesful">
23-
<CheckBoxIcon size="small" />
23+
<CheckIcon size="small" />
2424
</Tooltip>
2525
);
2626
} else {

0 commit comments

Comments
 (0)