Skip to content

Commit

Permalink
Fix script.js function name and reference spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
jkirrane authored and wseagar committed Apr 28, 2023
1 parent 70c9e6a commit b3a80a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ function querySelectorAllIncludingMe(node, selector) {
return [...node.querySelectorAll(selector)]
}

function getPreviusSiblingsOuterHTML(node) {
function getPreviousSiblingsOuterHTML(node) {
let prev = node.previousElementSibling;
let html = [];
while (prev) {
Expand Down Expand Up @@ -324,7 +324,7 @@ function evaluateBlueCheck() {

const isSmall = checkIfSmall(blueCheckComponent)
const isKnownBadData = checkIfKnownBadData(blueCheckComponent)
const prependHTML = getPreviusSiblingsOuterHTML(blueCheckComponent)
const prependHTML = getPreviousSiblingsOuterHTML(blueCheckComponent)

if (isKnownBadData && nestedProps.isVerified && nestedProps.isBlueVerified) {
changeVerified(prependHTML, blueCheckComponent, isSmall, true);
Expand Down

0 comments on commit b3a80a1

Please sign in to comment.