Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #305

Merged
merged 3 commits into from
Jan 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ You can create a multi-page app by adding more routes.

As of December 2022, Pynecone has just been released publicly and is in the **Alpha Stage**.

- :large_orange_diamond: **Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them activly.
- :large_orange_diamond: **Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them actively.
- **Public Beta**: Stable enough for non-enterprise use-cases.
- **Public Hosting Beta**: **Optionally** Deploy and Host your own apps on Pynecone!
- **Public**: Pynecone is production ready.
Expand Down
2 changes: 1 addition & 1 deletion pynecone/components/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def add_style(self, style: ComponentStyle) -> Component:
# Extract the style for this component.
component_style = Style(style[type(self)])

# Only add stylee props that are not overriden.
# Only add stylee props that are not overridden.
component_style = {
k: v for k, v in component_style.items() if k not in self.style
}
Expand Down
2 changes: 1 addition & 1 deletion pynecone/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Event(Base):
# The event name.
name: str

# The routing data where event occured
# The routing data where event occurred
router_data: Dict[str, Any] = {}

# The event payload.
Expand Down