diff --git a/apps/client/src/features/app-settings/panel/feature-settings-panel/UrlPresetsForm.tsx b/apps/client/src/features/app-settings/panel/feature-settings-panel/UrlPresetsForm.tsx index c1f3454cf..5eea0d92e 100644 --- a/apps/client/src/features/app-settings/panel/feature-settings-panel/UrlPresetsForm.tsx +++ b/apps/client/src/features/app-settings/panel/feature-settings-panel/UrlPresetsForm.tsx @@ -78,7 +78,7 @@ export default function UrlPresetsForm() { const addNew = () => { prepend({ - enabled: false, + enabled: true, alias: '', pathAndParams: '', }); diff --git a/apps/client/src/features/app-settings/panel/integrations-panel/HttpIntegrations.tsx b/apps/client/src/features/app-settings/panel/integrations-panel/HttpIntegrations.tsx index b12635d97..8a53b92d0 100644 --- a/apps/client/src/features/app-settings/panel/integrations-panel/HttpIntegrations.tsx +++ b/apps/client/src/features/app-settings/panel/integrations-panel/HttpIntegrations.tsx @@ -60,7 +60,7 @@ export default function HttpIntegrations() { id: generateId(), cycle: 'onLoad', message: '', - enabled: false, + enabled: true, }); }; diff --git a/apps/client/src/features/app-settings/panel/integrations-panel/OscIntegrations.tsx b/apps/client/src/features/app-settings/panel/integrations-panel/OscIntegrations.tsx index 0da95b1aa..2f26c7085 100644 --- a/apps/client/src/features/app-settings/panel/integrations-panel/OscIntegrations.tsx +++ b/apps/client/src/features/app-settings/panel/integrations-panel/OscIntegrations.tsx @@ -75,7 +75,7 @@ export default function OscIntegrations() { cycle: 'onLoad', address: '', payload: '', - enabled: false, + enabled: true, }); }; diff --git a/e2e/tests/features/206-url-preset.spec.ts b/e2e/tests/features/206-url-preset.spec.ts index e386a688d..3ff3e076d 100644 --- a/e2e/tests/features/206-url-preset.spec.ts +++ b/e2e/tests/features/206-url-preset.spec.ts @@ -19,8 +19,6 @@ test('URL preset feature, it should redirect to given URL', async ({ page }) => await page.getByTestId('field__url_0').click(); await page.getByTestId('field__url_0').fill('countdown'); - await page.getByTestId('field__enable_0').click(); - await page.getByTestId('url-preset-form').getByRole('button', { name: 'Save', exact: true }).click(); // make sure preset works