From 8ffbf23d4e9ec7683dc0672919cbd0035d159ff4 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 12 Dec 2024 22:33:37 -0800 Subject: [PATCH] fix(js): fix social switch not actually turning on feature. Closes #4055 --- web/pages/admin/config-federation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/pages/admin/config-federation.tsx b/web/pages/admin/config-federation.tsx index 9bc6a5d82..dc5fc80f4 100644 --- a/web/pages/admin/config-federation.tsx +++ b/web/pages/admin/config-federation.tsx @@ -185,7 +185,7 @@ const ConfigFederation = () => { setIsInfoModalOpen(false); postConfigUpdateToAPI({ apiPath: FIELD_PROPS_ENABLE_FEDERATION.apiPath, - data: { value: false }, + data: { value: true }, onSuccess: () => { setFieldInConfigState({ fieldName: 'enabled',