Skip to content

Commit

Permalink
testing deploy to firebase failure
Browse files Browse the repository at this point in the history
  • Loading branch information
siddaay committed Dec 12, 2024
1 parent 46523d4 commit 9d618c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conflicts/UnknownName.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class UnknownName extends Conflict {
const currName: string = names[i].definition.names.names[0].name.text.text // get name in string form from Refer object

if (this.levenshtein(userInput, currName) > 1) { // check if levenshtein distance is greater than 1
names.splice(i, 1) // filter out names that are dissimilar
names.splice(i, 1) // remove dissimilar names
}
};
}
Expand Down

0 comments on commit 9d618c4

Please sign in to comment.