From f5610a119517aa9764725750f217cdc64ba5c97e Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Fri, 20 Dec 2024 13:33:07 +1100 Subject: [PATCH] stricter meta handling --- packages/core/src/admin-ui/context.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/admin-ui/context.tsx b/packages/core/src/admin-ui/context.tsx index 626b4705706..119ff0b65f4 100644 --- a/packages/core/src/admin-ui/context.tsx +++ b/packages/core/src/admin-ui/context.tsx @@ -166,7 +166,7 @@ function InternalKeystoneProvider ({ }, []) // TODO - if (!meta && loading) return null + if (!meta) return null return ( @@ -186,7 +186,7 @@ function InternalKeystoneProvider ({