From 9346ae644fbe03d73462bd43d2ea93e5be344996 Mon Sep 17 00:00:00 2001 From: Hariom Balhara Date: Mon, 1 Aug 2022 13:10:38 +0530 Subject: [PATCH] Use non shallow mode (#3620) Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- packages/ui/Dialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/Dialog.tsx b/packages/ui/Dialog.tsx index 3aa06fa115..4a486156f1 100644 --- a/packages/ui/Dialog.tsx +++ b/packages/ui/Dialog.tsx @@ -36,7 +36,7 @@ export function Dialog(props: DialogProps) { }, }, undefined, - { shallow: true } + { shallow: false } ); setOpen(open); };