Skip to content

Commit

Permalink
feat: fix for typing
Browse files Browse the repository at this point in the history
refs: #30
  • Loading branch information
aaronczichon committed Sep 25, 2024
1 parent a1c6d7a commit f4488cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exctractors/row-extractor.func.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ export const findMultipleCoordinates = (rows: string[]): string[][] => {
if (!match) return;
return [match[1], match[3]];
})
.filter((coordinates) => coordinates !== undefined);
.filter((coordinates) => coordinates !== undefined) as string[][];
};

0 comments on commit f4488cf

Please sign in to comment.