Skip to content

Commit

Permalink
Revert accidental inversion from copy-paste-forget
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed May 3, 2023
1 parent f7287f7 commit 0a31972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@glimmer/syntax/lib/get-template-locals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function tokensFromType(
if (tag.indexOf('.') !== -1) {
let [potentialLocal] = tag.split('.');

if (scopedTokens.indexOf(potentialLocal) === -1) {
if (scopedTokens.indexOf(potentialLocal) !== -1) {
return;
}
}
Expand Down

0 comments on commit 0a31972

Please sign in to comment.