diff --git a/package.json b/package.json index 05ea47ab2..f8ae0af1a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "coolify", "description": "An open-source & self-hostable Heroku / Netlify alternative.", - "version": "2.2.1", + "version": "2.2.2", "license": "AGPL-3.0", "scripts": { "dev": "docker-compose -f docker-compose-dev.yaml up -d && NODE_ENV=development svelte-kit dev", diff --git a/src/routes/applications/[id]/index.svelte b/src/routes/applications/[id]/index.svelte index a5d846e89..49f800975 100644 --- a/src/routes/applications/[id]/index.svelte +++ b/src/routes/applications/[id]/index.svelte @@ -109,7 +109,7 @@ try { await post(`/applications/${id}/check.json`, { fqdn: application.fqdn, forceSave }); await post(`/applications/${id}.json`, { ...application }); - return toast.push('Configurations saved.'); + return window.location.reload(); } catch ({ error }) { if (error.startsWith('DNS not set')) { forceSave = true;