Cloud sync for all edits in May->June

This commit is contained in:
Frikky
2025-06-17 19:23:15 +02:00
parent 7c15f58617
commit c1c6a9f128
30 changed files with 7290 additions and 1153 deletions
+7 -2
View File
@@ -745,7 +745,7 @@ const AppCreator = (defaultprops) => {
}
setBasedata(data);
console.log("Info: ", data)
console.log("Loaded Info: ", data)
try {
if (data.info !== null && data.info !== undefined) {
@@ -759,7 +759,12 @@ const AppCreator = (defaultprops) => {
if (data.info.title.length > 29) {
setName(data.info.title.slice(0, 29));
} else {
setName(data.info.title);
// Check if fork=true in URL
if (window.location.search.includes("fork=true")) {
setName(data.info.title + " Fork");
} else {
setName(data.info.title)
}
}
}