Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesLoder committed Sep 19, 2024
1 parent 89b9c0c commit 6d42b9e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,8 @@ export class Text {

// validate the shape of the ketivQeres
for (const [index, ketivQere] of ketivQeres.entries()) {
let { input, ketiv, output, qere, ignoreTaamim, captureTaamim } = ketivQere;
let { input, output } = ketivQere;
const { ketiv, qere, ignoreTaamim, captureTaamim } = ketivQere;

if (!input && ketiv) {
input = ketiv;
Expand Down

0 comments on commit 6d42b9e

Please sign in to comment.