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

@@ -215,7 +215,7 @@ body {
.domain_selector .selected > span:nth-child(1),
.insight_selector .selected > span:nth-child(1) {
width: 100% !important;
width: 100%;
}
.dom_sc_stats > div::after,

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,
});
}
}