Merge pull request #353 from siteboon/fix/WORKSPACES_ROOT-issue-in-deployed-version

This commit is contained in:
viper151
2026-01-29 20:55:55 +01:00
committed by GitHub
3 changed files with 43 additions and 26 deletions

View File

@@ -183,7 +183,7 @@ const ProjectCreationWizard = ({ onClose, onProjectCreated }) => {
const data = await response.json();
if (!response.ok) {
throw new Error(data.error || t('projectWizard.errors.failedToCreate'));
throw new Error(data.details || data.error || t('projectWizard.errors.failedToCreate'));
}
if (onProjectCreated) {