Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ElijahAhianyo committed Apr 23, 2024
1 parent 3248778 commit 57f51b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reflex/components/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def __init__(self, *args, **kwargs):
if key.startswith("on_") and key not in triggers:
raise ValueError(
f"The {(comp_name := type(self).__name__)} does not take in an `{key}` event trigger. If {comp_name}"
f" is a third party component make sure to define `{key}` as an event trigger. "
f" is a third party component make sure to add `{key}` to the component's event triggers. "
f"visit https://reflex.dev/docs/wrapping-react/logic#event-triggers for more info."
)
if key in triggers:
Expand Down

0 comments on commit 57f51b4

Please sign in to comment.