Skip to content

Commit

Permalink
Update file_parse_and_validation.service.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
barrfalk committed Nov 26, 2024
1 parent 661fca6 commit 309c37e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,10 @@ export class FileParseValidateService {
});

const baseFileName = path.basename(fileName, path.extname(fileName));
const filePath = path.join("src/tempObsFiles/", `obs-${baseFileName}.csv`);
const filePath = path.join(
"/app/src/tempObsFiles/",
`obs-${baseFileName}.csv`,
);
const headers = Object.keys(obsToWrite[0]).map((key) => ({
id: key,
title: key,
Expand Down

0 comments on commit 309c37e

Please sign in to comment.