Skip to content

Commit

Permalink
chore: update TUTORIAL.md
Browse files Browse the repository at this point in the history
  • Loading branch information
NickNaskida committed Oct 6, 2023
1 parent 34f2025 commit 9cfa935
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This is a mini application that allows users to book venues.
- Axios - Http requests [Documentation](https://axios-http.com/docs/intro)
- NextUI - UI components [Documentation](https://nextui.org/docs/getting-started)
##### Server
- Python
- Python 3.9 (3.8+ should work too)
- FastAPI - Async web framework [Documentation](https://fastapi.tiangolo.com/)
- Aiogram - Async Telegram Bot API framework [Documentation](https://docs.aiogram.dev/en/latest/)
- Pydantic - Validation Library [Documentation](https://docs.pydantic.dev/latest/)
Expand Down
2 changes: 1 addition & 1 deletion TUTORIAL.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Mini App Development Step-by-Step Guide
# Mini App Development Step-by-Step Guide With React (Vite) & Python (Aiogram + FastAPI)

### Telegram Bot Setup
First before we start creating an application, we need to setup a Telegram bot. This bot will be used to communicate with our application.
Expand Down
1 change: 1 addition & 0 deletions frontend/src/pages/BookingIndex.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ const BookingIndex = () => {
<Input
type="date"
variant="bordered"
placeholder="date"
validationState={errors.date ? "invalid" : "valid"}
errorMessage={errors.date && errors.date.message}
{...register("date", { required: "date is required" })}
Expand Down

0 comments on commit 9cfa935

Please sign in to comment.