diff --git a/apps/ui/src/routes/applications/[id]/previews/index.svelte b/apps/ui/src/routes/applications/[id]/previews/index.svelte index 2c5010283..87cebca7c 100644 --- a/apps/ui/src/routes/applications/[id]/previews/index.svelte +++ b/apps/ui/src/routes/applications/[id]/previews/index.svelte @@ -144,7 +144,7 @@ loadBuildingStatusInterval = setInterval(() => { application.previewApplication.forEach((preview: any) => { if (status[id] === 'building') { - getStatus(preview); + await getStatus(preview); } }); }, 3000);