Skip to content

Commit

Permalink
fix(builtins): minor fix
Browse files Browse the repository at this point in the history
DCO Remediation Commit <[email protected]>

Hereby add my Signed-off-by to this commit: dd1cfb0
Hereby add my Signed-off-by to this commit: 575ecee
Hereby add my Signed-off-by to this commit: a841b3a
  • Loading branch information
manushak committed Sep 17, 2024
1 parent 3e284b8 commit fb719bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/if-run/builtins/csv-lookup/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ export const CSVLookup = (
* 4. Filters requested information from CSV.
*/
const execute = async (inputs: PluginParams[]) => {
const safeGlobalConfig = validateConfig();
const {filepath, query, output} = safeGlobalConfig;
const safeConfig = validateConfig();
const {filepath, query, output} = safeConfig;
const file = await retrieveFile(filepath);
const parsedCSV = parseCSVFile(file);

Expand Down

0 comments on commit fb719bd

Please sign in to comment.