Skip to content

Commit 759ddd3

Browse files
committed
fix: fixing linting issue
1 parent adae5d5 commit 759ddd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rewriters/Rewriter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ abstract class Rewriter {
9696
if (response === null || typeof response !== 'object') return response;
9797

9898
// Extract the key
99-
let element = response[key];
99+
const element = response[key];
100100

101101
// Extract the position
102102
// NOTE: We might eventually want to create an array if one is not present at the key

0 commit comments

Comments
 (0)