From b70923e47bc6c4a97d466e4a1505667a34dea223 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Mon, 29 Jul 2024 16:55:48 -0700 Subject: [PATCH] add helpful comment Co-authored-by: Masen Furer --- reflex/components/component.py | 1 + 1 file changed, 1 insertion(+) diff --git a/reflex/components/component.py b/reflex/components/component.py index 35e0363e49..bb3e9053f2 100644 --- a/reflex/components/component.py +++ b/reflex/components/component.py @@ -469,6 +469,7 @@ def __init__(self, *args, **kwargs): if isinstance(style, Breakpoints): style = { + # Assign the Breakpoints to the self-referential selector to avoid squashing down to a regular dict. "&": style, }