From a9b6f05e141e884450b4a49e5370a1b0b0e0391c Mon Sep 17 00:00:00 2001 From: jasquat Date: Mon, 21 Aug 2023 13:33:25 -0400 Subject: [PATCH] lint --- .../src/components/AuthenticationConfiguration.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }, });