remove title row removal

This commit is contained in:
Jack Merrill 2024-09-17 17:30:02 -04:00
parent 79b6c7b18a
commit 09c2ae06dc
No known key found for this signature in database
GPG Key ID: FD574AFF96E99636

View File

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