re-add removal of the first row in CSV parsing

This commit is contained in:
Jack Merrill 2025-02-20 08:27:48 -05:00
parent b7c005581b
commit d6f956f692
No known key found for this signature in database
GPG Key ID: FD574AFF96E99636

View File

@ -156,7 +156,8 @@ func ParseCSV(u string) (*Menu, error) {
// Remove the first row, its a title
// Removed 9/17/2024 as they removed the title row but it might come back
// records = records[1:]
// Readded 2/20/2025
records = records[1:]
// Initialize Menu
var menu Menu