diff --git a/packages/core/src/data/fetchFn/fetchAppSettings.ts b/packages/core/src/data/fetchFn/fetchAppSettings.ts index 776a2d409..892bd34b1 100644 --- a/packages/core/src/data/fetchFn/fetchAppSettings.ts +++ b/packages/core/src/data/fetchFn/fetchAppSettings.ts @@ -18,11 +18,7 @@ export async function fetchAppSettings< const config = _config ?? getHeadstartWPConfig(); - const { - data: { result }, - } = await executeFetchStrategy(fetchAppSettings.fetcher(), config, params, options); - - return { data: result }; + return executeFetchStrategy(fetchAppSettings.fetcher(), config, params, options); } fetchAppSettings.fetcher = <