@@ -170,9 +170,7 @@ export class ListFragmentCommand extends FragmentBaseCommandRunner {
170170 category : cat ,
171171 count : fragmentsByCategory [ cat ] . length
172172 } ) ) ;
173- const tableData = this . uiFacade . tableRenderer . formatCategoryTable ( tableDataInput , {
174- includeDescriptions : false
175- } ) ;
173+ const tableData = this . uiFacade . tableRenderer . formatCategoryTable ( tableDataInput ) ;
176174 this . uiFacade . printSectionHeader (
177175 FRAGMENT_UI . SECTION_HEADER . FRAGMENT_CATEGORIES ,
178176 FRAGMENT_UI . SECTION_HEADER . CATEGORIES_ICON
@@ -323,7 +321,7 @@ export class ListFragmentCommand extends FragmentBaseCommandRunner {
323321 }
324322 }
325323
326- private async createNewCategory ( fragmentsByCategory : Record < string , PromptFragment [ ] > ) : Promise < void > {
324+ private async createNewCategory ( _fragmentsByCategory : Record < string , PromptFragment [ ] > ) : Promise < void > {
327325 this . uiFacade . clearConsole ( ) ;
328326 this . uiFacade . printSectionHeader (
329327 FRAGMENT_UI . SECTION_HEADER . CREATE_CATEGORY ,
@@ -418,7 +416,7 @@ export class ListFragmentCommand extends FragmentBaseCommandRunner {
418416
419417 private async handleEmptyCategory (
420418 category : string ,
421- fragmentsByCategory : Record < string , PromptFragment [ ] >
419+ _fragmentsByCategory : Record < string , PromptFragment [ ] >
422420 ) : Promise < void > {
423421 this . uiFacade . clearConsole ( ) ;
424422 this . uiFacade . printSectionHeader (
0 commit comments