Skip to content

Commit ed27333

Browse files
committed
hotfix
1 parent 38df03e commit ed27333

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/extensions.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ func (e ExtensionsCmd) List(ctx context.Context, _ ExtensionsListInput) error {
7878
util.FormatLocal(it.LastUsedAt),
7979
})
8080
}
81-
printTableNoPad(rows, true)
81+
PrintTableNoPad(rows, true)
8282
return nil
8383
}
8484

@@ -303,7 +303,7 @@ func (e ExtensionsCmd) Upload(ctx context.Context, in ExtensionsUploadInput) err
303303
rows = append(rows, []string{"Name", name})
304304
rows = append(rows, []string{"Created At", util.FormatLocal(item.CreatedAt)})
305305
rows = append(rows, []string{"Size (bytes)", fmt.Sprintf("%d", item.SizeBytes)})
306-
printTableNoPad(rows, true)
306+
PrintTableNoPad(rows, true)
307307
return nil
308308
}
309309

0 commit comments

Comments
 (0)