Remove some unused stuff (#4388)

Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Douwe Osinga
2025-09-22 15:53:19 -04:00
committed by GitHub
parent 83fc8a69d3
commit c10f335038
8 changed files with 18 additions and 45 deletions
+1 -1
View File
@@ -10,4 +10,4 @@ export function snakeToTitleCase(snake: string): string {
.split('_')
.map((word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase())
.join(' ');
}
}