diff --git a/src/stores/admin_settings.js b/src/stores/admin_settings.js index 44146756f..5aa91c819 100644 --- a/src/stores/admin_settings.js +++ b/src/stores/admin_settings.js @@ -92,7 +92,8 @@ export const useAdminSettingsStore = defineStore('adminSettings', { this.setInstanceAdminSettings({ credentials: useOAuthStore().token, backendDbConfig, - })) + }), + ) .catch(({ statusCode, statusText }) => { if (statusCode === 400) { if (/configurable_from_database/.test(statusText)) { diff --git a/test/e2e-playwright/playwright.config.mjs b/test/e2e-playwright/playwright.config.mjs index 0120b5b58..51a4de21e 100644 --- a/test/e2e-playwright/playwright.config.mjs +++ b/test/e2e-playwright/playwright.config.mjs @@ -31,8 +31,7 @@ export default defineConfig({ timeout: 120_000, env: { ...process.env, - PORT: - process.env.PORT || '8099', + PORT: process.env.PORT || '8099', VITE_PROXY_TARGET: process.env.VITE_PROXY_TARGET || 'http://localhost:4000', VITE_PROXY_ORIGIN: