Revert "fix: prevent multiple project creation when project doesn't exist"

This reverts commit d04aa8d1c1.
This commit is contained in:
Kha Nguyen 2025-07-17 20:25:16 -05:00
parent d04aa8d1c1
commit e4748ecb09
1 changed files with 13 additions and 6 deletions

View File

@ -37,6 +37,7 @@ export default function Editor() {
const params = useParams();
const router = useRouter();
const projectId = params.project_id as string;
const handledProjectIds = useRef<Set<string>>(new Set());
const [isOnboardingOpen, setIsOnboardingOpen] = useState(true);
useDisableBrowserZoom();
@ -44,14 +45,20 @@ export default function Editor() {
useEffect(() => {
const initProject = async () => {
if (!projectId) return;
if (handledProjectIds.current.has(projectId)) {
return;
}
try {
await loadProject(projectId);
} catch (error: any) {
// if the project is not found, go back to the projects page,
// creating a new project here will cause multiple projects to be created
if (error.message.includes("not found")) {
router.push("/projects");
}
} catch (error) {
handledProjectIds.current.add(projectId);
const newProjectId = await createNewProject("Untitled Project");
router.replace(`/editor/${newProjectId}`);
return;
}
};