From 4f0f9eb4139a8c3439be0125ffd982b3cbf5c9b5 Mon Sep 17 00:00:00 2001 From: dan Date: Mon, 18 Nov 2024 22:05:51 +0000 Subject: Fix TagMenu initial render perf (#6483) * Split tag menu dialog content * Log the actual error please * Fix it on native --- src/components/Dialog/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/Dialog/index.tsx') diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index 0e78fcf97..c9455c5cc 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -75,7 +75,7 @@ export function Outer({ try { cb() } catch (e: any) { - logger.error('Error running close callback', e) + logger.error(e || 'Error running close callback') } } -- cgit 1.4.1