 79f287ed61
			
		
	
	79f287ed61
	
	
		
			
	
		
	
	
		
			Some checks failed
		
		
	
	Build and Push Docker Image / docker (push) Failing after 1m7s
				
			Moved event fetching logic from CalendarView to Calendar component to properly use the visible date range instead of hardcoded current month. The Calendar component already tracks the current visible date through navigation, so events now load correctly for August and other months when navigating. Changes: - Calendar component now manages its own events state and fetching - Event fetching responds to current_date changes from navigation - CalendarView simplified to just render Calendar component - Fixed cargo fmt/clippy formatting across codebase 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			8 lines
		
	
	
		
			154 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			154 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Backend main entry point
 | |
| use calendar_backend::*;
 | |
| 
 | |
| #[tokio::main]
 | |
| async fn main() -> Result<(), Box<dyn std::error::Error>> {
 | |
|     run_server().await
 | |
| }
 |