Skip to content

Commit

Permalink
Remove logging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
edmondsgarrett committed Nov 14, 2023
1 parent 15a95ee commit 2ae082c
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ const DataFilesPreviewModal = () => {
const { href, content, error, fileType, isLoading } = useSelector(
(state) => state.files.preview
);
console.log(useSelector(state => state.files.preview))
const hasError = error !== null;
const previewUsingTextContent = !isLoading && !hasError && content !== null;
const previewUsingHref = !isLoading && !hasError && !previewUsingTextContent;
Expand Down

0 comments on commit 2ae082c

Please sign in to comment.