From 83dc03ef37f4aa66787a36ef20d82d84607d4d76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?nicole=20miko=C5=82ajczyk?= Date: Thu, 26 Feb 2026 20:56:46 +0100 Subject: [PATCH] nicolium: improve error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nicole mikołajczyk --- packages/pl-fe/src/actions/frontend-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pl-fe/src/actions/frontend-config.ts b/packages/pl-fe/src/actions/frontend-config.ts index b09271bc2..e66c2274f 100644 --- a/packages/pl-fe/src/actions/frontend-config.ts +++ b/packages/pl-fe/src/actions/frontend-config.ts @@ -72,7 +72,7 @@ const loadFrontendConfig = () => async (dispatch: AppDispatch, getState: () => R const fetchPlFeJson = (host: string | null) => (dispatch: AppDispatch) => staticFetch('/instance/pl-fe.json') .then(({ json: data }) => { - if (!isObject(data)) throw 'pl-fe.json failed'; + if (!isObject(data)) throw 'pl-fe.json fetch failed'; dispatch(importFrontendConfig(data, host)); return data; })