From 88ac5d55a98559362a90949a7dc9ed68eccf2d64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcelo=20Gon=C3=A7alves?= Date: Wed, 25 Feb 2026 10:29:10 +0000 Subject: [PATCH] Revert --- packages/react-ui/src/app/app-bootstrap.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-ui/src/app/app-bootstrap.tsx b/packages/react-ui/src/app/app-bootstrap.tsx index 9bcce1736c..7d22afa230 100644 --- a/packages/react-ui/src/app/app-bootstrap.tsx +++ b/packages/react-ui/src/app/app-bootstrap.tsx @@ -25,9 +25,9 @@ export function AppBootstrap({ children }: Readonly) { try { const flags = await flagsApi.getAll(); queryClient.setQueryData([QueryKeys.flags], flags); - const isInitialized = await initializeInternal(); + await initializeInternal(); - if (mounted && isInitialized) { + if (mounted) { setState({ status: 'ready' }); } } catch (error) {