Skip to content

Commit

Permalink
Merge pull request #57 from Saifullah-dev/feature/list-layout
Browse files Browse the repository at this point in the history
Feature/list layout
  • Loading branch information
Saifullah-dev authored Sep 7, 2024
2 parents 0e45613 + 24a0875 commit 56e4844
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/File Manager/FileManager.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Loader from "../components/Loader/Loader";
import PropTypes from "prop-types";

const FileManager = ({
files = [],
files,
fileUploadConfig,
isLoading,
onCreateFolder,
Expand Down Expand Up @@ -159,7 +159,7 @@ const FileManager = ({
};

FileManager.propTypes = {
files: PropTypes.arrayOf(PropTypes.object),
files: PropTypes.arrayOf(PropTypes.object).isRequired,
};

export default FileManager;

0 comments on commit 56e4844

Please sign in to comment.