Skip to content

Commit

Permalink
enh: fix @ts-ignore (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
haecheonlee authored May 12, 2024
1 parent a4942a7 commit 6d2c21a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/services/BlockService/PathProcessor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ export const processPath = async (block: Block, params: Params,
if (!parsedPath) {
return false;
}
// eslint-disable-next-line
// @ts-ignore
setPaths(prev => [...prev, parsedPath]);
const path = parsedPath;
setPaths(prev => [...prev, path]);
return true;
}

0 comments on commit 6d2c21a

Please sign in to comment.