Add TimeSelector and ScheduleModal components with tests
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 2m45s

- Implemented TimeSelector component for selecting time with AM/PM toggle and minute/hour increment/decrement functionality.
- Created ScheduleModal component for scheduling chores with options for specific days or intervals.
- Added utility functions for scheduling logic in scheduleUtils.ts.
- Developed comprehensive tests for TimeSelector and scheduleUtils functions to ensure correct behavior.
This commit is contained in:
2026-02-23 15:44:55 -05:00
parent d8822b44be
commit 234adbe05f
26 changed files with 2880 additions and 60 deletions

View File

@@ -14,12 +14,12 @@ export default defineConfig({
},
proxy: {
'/api': {
target: 'http://192.168.1.102:5000',
target: 'http://192.168.1.219:5000',
changeOrigin: true,
rewrite: (p) => p.replace(/^\/api/, ''),
},
'/events': {
target: 'http://192.168.1.102:5000',
target: 'http://192.168.1.219:5000',
changeOrigin: true,
secure: false,
},