From b5f6ab3a82a23230376890744ef0aca2b96884e6 Mon Sep 17 00:00:00 2001 From: Nikhil Rao Date: Mon, 20 Nov 2023 18:10:41 -0800 Subject: [PATCH] Fix pyright errors (#2210) --- reflex/components/datadisplay/dataeditor.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reflex/components/datadisplay/dataeditor.py b/reflex/components/datadisplay/dataeditor.py index 8973ac37b..a39cdfc90 100644 --- a/reflex/components/datadisplay/dataeditor.py +++ b/reflex/components/datadisplay/dataeditor.py @@ -347,7 +347,9 @@ class DataEditor(NoSSRComponent): return { (-1, "DataEditorPortal"): Portal.create( - id="portal", style={"position": "fixed", "top": 0} + id="portal", + position="fixed", + top=0, ) }