mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-03-20 11:03:08 +00:00
- Added a new DashboardView component for improved project management. - Updated sidebar navigation to redirect to the dashboard instead of the home page. - Removed ProjectActions from the sidebar for a cleaner interface. - Enhanced BoardView to conditionally render the WorktreePanel based on visibility settings. - Introduced worktree panel visibility management per project in the app store. - Updated project settings to include worktree panel visibility and favorite status. - Adjusted navigation logic to ensure users are directed to the appropriate view based on project state.
7 lines
211 B
TypeScript
7 lines
211 B
TypeScript
import { createFileRoute } from '@tanstack/react-router';
|
|
import { DashboardView } from '@/components/views/dashboard-view';
|
|
|
|
export const Route = createFileRoute('/dashboard')({
|
|
component: DashboardView,
|
|
});
|