🐛 (index.tsx): remove unused parameter folderId from handleFolderChange function to fix potential bug

This commit is contained in:
cristhianzl 2024-06-21 14:44:28 -03:00
commit 324b76d2d1

View file

@ -52,7 +52,7 @@ const SideBarFoldersButtonsComponent = ({
const setErrorData = useAlertStore((state) => state.setErrorData);
const setSuccessData = useAlertStore((state) => state.setSuccessData);
const handleFolderChange = (folderId: string) => {
const handleFolderChange = () => {
getFolderById(folderId);
};