Update core/rawdb/database_tablewriter_tinygo.go

This commit is contained in:
kevaundray 2025-08-16 17:50:50 +01:00 committed by GitHub
parent 83b63373d9
commit 810a32fb7e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -161,7 +161,6 @@ func (t *Table) calculateColumnWidths() []int {
widths[i] = max(widths[i], len(f))
}
// Add padding: cellPadding spaces on each side of content
for i := range widths {
widths[i] += totalPadding
}