Skip to content

Commit

Permalink
no slice
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfarrell76 committed Dec 2, 2024
1 parent 9ad40be commit c406035
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/preference-management/parsePreferenceManagementCsv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ export async function parsePreferenceManagementCsvWithCache(

// Read in the file
logger.info(colors.magenta(`Reading in file: "${file}"`));
// FIXME
let preferences = readCsv(file, t.record(t.string, t.string)).slice(0, 20000);
let preferences = readCsv(file, t.record(t.string, t.string));

// start building the cache, can use previous cache as well
let currentState: FileMetadataState = {
Expand Down

0 comments on commit c406035

Please sign in to comment.