fix: address update cli type import

This commit is contained in:
Peter Steinberger
2026-01-21 06:10:27 +00:00
parent 5dcd48544a
commit 32edaad823
2 changed files with 1 additions and 5 deletions

View File

@@ -30,11 +30,6 @@ function buildRows(entries: Array<{ id: string; name?: string | undefined }>) {
}));
}
function formatEntry(entry: { id: string; name?: string | undefined }) {
const name = entry.name?.trim();
return name ? `${entry.id} ${theme.muted(name)}` : entry.id;
}
export function registerDirectoryCli(program: Command) {
const directory = program
.command("directory")