Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
netbonus committed Jul 3, 2024
1 parent e0bc551 commit 5f80b8c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/__test__/utils/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export const unharden = (x) => {
export const buildPath = (indices) => {
let path = 'm';
indices.forEach((idx) => {
// eslint-disable-next-line quotes
path += `/${unharden(idx)}${idx >= HARDENED_OFFSET ? "'" : ''}`;
});
return path;
Expand Down

0 comments on commit 5f80b8c

Please sign in to comment.