fixes: Codacy Issues.

This commit is contained in:
Towfiq
2022-12-20 14:38:55 +06:00
parent 457f55353f
commit 1ebf7aef4b
2 changed files with 3 additions and 3 deletions

View File

@@ -203,9 +203,9 @@ export const extractScrapedResult = (content: string, scraper_type:string): Sear
for (const { link, title, position } of results) {
if (title && link) {
extractedResult.push({
title: title,
title,
url: link,
position: position,
position,
});
}
}