diff --git a/packages/core/src/scrapers/kijiji.ts b/packages/core/src/scrapers/kijiji.ts index 37113ed..465dc85 100644 --- a/packages/core/src/scrapers/kijiji.ts +++ b/packages/core/src/scrapers/kijiji.ts @@ -494,7 +494,7 @@ function _parseListing( const cents = price?.amount != null ? Number(price.amount) : undefined; const amountFormatted = - cents != null ? formatCentsToCurrency(cents / 100, "en-CA") : undefined; + cents != null ? formatCentsToCurrency(cents, "en-CA") : undefined; const numberOfViews = metrics?.views != null ? Number(metrics.views) : undefined; @@ -573,7 +573,7 @@ export async function parseDetailedListing( const cents = price?.amount != null ? Number(price.amount) : undefined; const amountFormatted = - cents != null ? formatCentsToCurrency(cents / 100, "en-CA") : undefined; + cents != null ? formatCentsToCurrency(cents, "en-CA") : undefined; const numberOfViews = metrics?.views != null ? Number(metrics.views) : undefined;