Skip to content

Commit b278c20

Browse files
committed
feat: add interactive CLI dashboard and onboarding screen with system diagnostics
1 parent 52554a0 commit b278c20

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/flock/cli/main.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,11 @@ def get_dashboard_layout(selected: int, status_text: str = "") -> Group:
580580
)
581581

582582

583+
def render_dashboard(console: Console, selected: int | None, is_install: bool = False) -> None:
584+
"""Wrapper around render_full_dashboard for backward compatibility (e.g. tests)."""
585+
render_full_dashboard(console, selected, is_install)
586+
587+
583588
def render_full_dashboard(console: Console, selected: int | None, is_install: bool = False) -> None:
584589
"""Render the complete dashboard responsively (used only by the post-install hook)."""
585590
width = console.width

0 commit comments

Comments
 (0)