diff --git a/spiffworkflow-frontend/src/components/AuthenticationConfiguration.tsx b/spiffworkflow-frontend/src/components/AuthenticationConfiguration.tsx index 455a6f8cc..246db74a4 100644 --- a/spiffworkflow-frontend/src/components/AuthenticationConfiguration.tsx +++ b/spiffworkflow-frontend/src/components/AuthenticationConfiguration.tsx @@ -18,7 +18,9 @@ export default function AuthenticationConfiguration() { const saveAuthConfig = () => { HttpService.makeCallToBackend({ path: '/authentication/configuration', - successCallback: () => { window.location.reload() }, + successCallback: () => { + window.location.reload(); + }, httpMethod: 'PUT', postBody: { value: authConfig }, });