fix linter (#438)
This commit is contained in:
parent
20ca590684
commit
e982d9c13c
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ export default React.memo<Props>(function RecommendedContent(props: Props) {
|
|||
|
||||
if (title) {
|
||||
for (const term of termsToCheck) {
|
||||
if (claimNameToCheckAgainst.includes(term)) {
|
||||
if (claimNameToCheckAgainst && claimNameToCheckAgainst.includes(term)) {
|
||||
triggerBlacklist = true;
|
||||
}
|
||||
if (title.includes(term)) {
|
||||
|
|
Loading…
Reference in a new issue