chore: Refactor loadingFolders variable name in SidebarNav component

This commit is contained in:
cristhianzl 2024-06-13 17:44:06 -03:00
commit 75c13f4f20

View file

@ -28,7 +28,7 @@ export default function SidebarNav({
}: SidebarNavProps) {
const location = useLocation();
const pathname = location.pathname;
const loadingFolders = useFolderStore((state) => state.loading);
const loadingFolders = useFolderStore((state) => state.isLoadingFolders);
const folders = useFolderStore((state) => state.folders);
const pathValues = ["folder", "components", "flows", "all"];