This commit is contained in:
Juan Font 2021-08-15 23:35:03 +02:00
parent f194b41435
commit bc2574680d
3 changed files with 12 additions and 4 deletions

View file

@ -81,7 +81,10 @@ var listPreAuthKeys = &cobra.Command{
})
}
pterm.DefaultTable.WithHasHeader().WithData(d).Render()
err = pterm.DefaultTable.WithHasHeader().WithData(d).Render()
if err != nil {
log.Fatal(err)
}
},
}