diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 53cbcb3..6022995 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -8,6 +8,7 @@ - **Database**: Use TinyDB with `from_dict()`/`to_dict()` for serialization. All logic should operate on model instances, not raw dicts. - **Events**: Real-time updates via Server-Sent Events (SSE). Every mutation (add/edit/delete/trigger) must call `send_event_for_current_user` (see `backend/events/`). - **Changes**: Do not use comments to replace code. All changes must be reflected in both backend and frontend files as needed. +- **Specs**: If specs have a checklist, all items must be completed and marked done. ## đź§© Key Patterns & Conventions @@ -15,7 +16,11 @@ - **Scoped Styles**: All `.vue` files must use ` diff --git a/frontend/vue-app/src/components/auth/Login.vue b/frontend/vue-app/src/components/auth/Login.vue index cc0f854..d0aaf42 100644 --- a/frontend/vue-app/src/components/auth/Login.vue +++ b/frontend/vue-app/src/components/auth/Login.vue @@ -1,6 +1,6 @@