From a735a6496f3cd79cc78ee0e8f174141c3602fa09 Mon Sep 17 00:00:00 2001 From: Dmitrii Shilov Date: Tue, 20 Jan 2026 10:19:18 +0100 Subject: [PATCH] feat: Enhance restore container functionality with error handling and UI updates --- src/Platform/Fabric/FabricUtil.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Platform/Fabric/FabricUtil.ts b/src/Platform/Fabric/FabricUtil.ts index 3482524e9..52e3a645d 100644 --- a/src/Platform/Fabric/FabricUtil.ts +++ b/src/Platform/Fabric/FabricUtil.ts @@ -106,7 +106,7 @@ const requestAndStoreAccessToken = async (): Promise => { }; export const openRestoreContainerDialog = (): void => { - if (configContext.platform === Platform.Fabric) { + if (isFabricNative()) { sendCachedDataMessage(FabricMessageTypes.RestoreContainer, []); } };