Skip to content

Commit f800cf2

Browse files
authored
Merge pull request #1051 from mariatouil/fix/stuck-new-app-loading-983
fix: resolve issue #983 - Stuck on Creating new app loading screen
2 parents 040a6a7 + c75c9d0 commit f800cf2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: src/dev-center/js/dev-center.js

+4
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,8 @@ async function create_app(title, source_path = null, items = null) {
288288

289289
})
290290
.then(async (app) => {
291+
$('.new-app-modal').get(0).close();
292+
window.location.reload();
291293
let app_dir;
292294
// ----------------------------------------------------
293295
// Create app directory in AppData
@@ -313,6 +315,8 @@ async function create_app(title, source_path = null, items = null) {
313315
maximizeOnStart: false,
314316
background: false,
315317
}).then(async (app) => {
318+
$('.new-app-modal').get(0).close();
319+
window.location.reload();
316320
// refresh app list
317321
puter.apps.list().then(async (resp) => {
318322
apps = resp;

0 commit comments

Comments
 (0)