diff --git a/src/tt/cli.py b/src/tt/cli.py index 1874dff..0c30117 100644 --- a/src/tt/cli.py +++ b/src/tt/cli.py @@ -45,10 +45,10 @@ def new( @app.command() def table( - view: Annotated[str, typer.Option("-v", "--view", help="saved view")] = "default", + view: Annotated[str, typer.Option("-v", "--view", help="saved view")] = "tasks", ): initialize_db() - things_tui("tasks") + things_tui(view) @app.command()