From 4ef96e15eb0a5bb1346f2fd3d51f080ef4c13ad7 Mon Sep 17 00:00:00 2001 From: leekelleher Date: Thu, 14 May 2026 17:26:03 +0100 Subject: [PATCH] Mocks: Add missing signalR property to mock server configuration response The GetServerConfigurationResponse type was updated in #22700 to require a signalR.skipNegotiation property, but the MSW mock handler was not updated to match, causing a tsc compilation error. --- .../mocks/msw-handlers/server.handlers.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/mocks/msw-handlers/server.handlers.ts b/src/Umbraco.Web.UI.Client/mocks/msw-handlers/server.handlers.ts index 288911527c30..f795a0e8c4f8 100644 --- a/src/Umbraco.Web.UI.Client/mocks/msw-handlers/server.handlers.ts +++ b/src/Umbraco.Web.UI.Client/mocks/msw-handlers/server.handlers.ts @@ -35,6 +35,9 @@ export const serverInformationHandlers = [ versionCheckPeriod: 7, // days allowLocalLogin: true, umbracoCssPath: '/css', + signalR: { + skipNegotiation: false, + }, }); }), http.get(umbracoPath('/server/information'), () => {