We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe0f946 commit f050374Copy full SHA for f050374
1 file changed
reflex/state.py
@@ -2486,6 +2486,14 @@ class FrontendEventExceptionState(State):
2486
),
2487
re.compile(re.escape("TypeError: null is not an object")), # Safari
2488
re.compile(r"TypeError: can't access property \".*\" of null"), # Firefox
2489
+ # Firefox: property access is on a function that returns null.
2490
+ re.compile(
2491
+ re.escape("TypeError: can't access property \"")
2492
+ + r".*"
2493
+ + re.escape('", ')
2494
2495
+ + re.escape(" is null")
2496
+ ),
2497
]
2498
2499
@event
0 commit comments