From 00b98a948c69e544cf18b2be8d3c73e9120795ef Mon Sep 17 00:00:00 2001 From: Carly Richmond <74931905+carlyrichmond@users.noreply.github.com> Date: Tue, 3 Sep 2024 12:47:55 +0100 Subject: [PATCH] Change to update to see if username and password is picked up --- apps/synthetics-replicator-tests/synthetics.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/synthetics-replicator-tests/synthetics.config.ts b/apps/synthetics-replicator-tests/synthetics.config.ts index 7e80428..fbc4bf0 100644 --- a/apps/synthetics-replicator-tests/synthetics.config.ts +++ b/apps/synthetics-replicator-tests/synthetics.config.ts @@ -28,7 +28,7 @@ export default env => { }, }; if (env === 'production') { - config.params = { url: 'https://synthetics-replicator.netlify.app/' } + config.params!.url = 'https://synthetics-replicator.netlify.app/'; } return config; };