auth-fixes #12

Merged
aetos merged 8 commits from auth-fixes into main 2026-07-19 14:47:30 +00:00
Showing only changes of commit e87a2d55ab - Show all commits

View File

@@ -135,7 +135,7 @@ function ProfileComponentWrapper({
getOperation?: { path: string }; getOperation?: { path: string };
}) { }) {
const [data, setData] = useState<any>(null); const [data, setData] = useState<any>(null);
const [loading, setLoading] = useState(false); const [loading, setLoading] = useState(mode !== "create");
const [error, setError] = useState<string | null>(null); const [error, setError] = useState<string | null>(null);
const fetchPath = getOperation?.path ?? operation.path; const fetchPath = getOperation?.path ?? operation.path;