refactor server repo

This commit is contained in:
Adem Baccara
2025-08-25 11:59:21 +01:00
parent adc843f1cf
commit b3d343cf2e
11 changed files with 647 additions and 448 deletions
-1
View File
@@ -51,7 +51,6 @@ func renderTagChips(tags []string) string {
}
chips := make([]string, 0, len(tags))
for _, t := range tags {
// Foreground black on a bluish background to resemble a tag/chip.
chips = append(chips, fmt.Sprintf("[black:#5FAFFF] %s [-:-:-]", t))
}
return strings.Join(chips, " ")