diff --git a/monkey/monkey_island/cc/ui/src/components/pages/ConfigurePage.js b/monkey/monkey_island/cc/ui/src/components/pages/ConfigurePage.js index ea347d73a..cbf124cdf 100644 --- a/monkey/monkey_island/cc/ui/src/components/pages/ConfigurePage.js +++ b/monkey/monkey_island/cc/ui/src/components/pages/ConfigurePage.js @@ -117,7 +117,7 @@ class ConfigurePageComponent extends AuthComponent { } updateCredentials = () => { - this.authFetch(CREDENTIALS_URL) + this.authFetch(CONFIGURED_PROPAGATION_CREDENTIALS_URL) .then(res => res.json()) .then(credentials => { credentials = formatCredentialsForForm(credentials); @@ -278,7 +278,7 @@ class ConfigurePageComponent extends AuthComponent { let config = JSON.parse(JSON.stringify(this.state.configuration)) config = reformatConfig(config, true); - this.authFetch(CREDENTIALS_URL, + this.authFetch(CONFIGURED_PROPAGATION_CREDENTIALS_URL, { method: 'PATCH', headers: {'Content-Type': 'application/json'},