Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamedsalem401 committed Nov 25, 2023
1 parent e88ded8 commit 78506e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/parseFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export const extractTasks = (ast: Root) => {
return tasks;
};

function recursivelyExtractText(node) {
function recursivelyExtractText(node: any) {
if (node.value) {
return node.value;
} else if (node.children) {
Expand Down

0 comments on commit 78506e8

Please sign in to comment.