Skip to content

Commit

Permalink
fix: remove console warn
Browse files Browse the repository at this point in the history
Co-authored-by: Sehi L'Yi <[email protected]>
  • Loading branch information
etowahadams and sehilyi authored Sep 25, 2023
1 parent 7c7ff04 commit deab818
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/data-fetchers/csv/csv-data-fetcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export class CsvDataFetcherClass {
try {
const buffer = await this.#file.readFile();
const text = buffer.toString();
console.warn(text);
const textWithHeader = headerNames ? `${headerNames.join(separator)}\n${text}` : text;

const parsedCSV = d3dsvFormat(separator).parse(textWithHeader, (row: DSVRowString<string>) =>
Expand Down

0 comments on commit deab818

Please sign in to comment.