fix empty folder form on root folder level (#107630)

This commit is contained in:
Yunwen Zheng
2025-07-04 14:13:15 +00:00
committed by GitHub
parent 1e3f7bfd67
commit 107c7fd8df
@@ -39,7 +39,7 @@ export function useProvisionedFolderFormData({
const initialValues = useMemo(() => {
// Only create initial values when we have the data
if (!repository || !folder || isLoading) {
if (!repository || isLoading) {
return undefined;
}