diff --git a/frontend/src/components/SubscriptionReport.js b/frontend/src/components/SubscriptionReport.js
index d90ecaa0..36c3658d 100644
--- a/frontend/src/components/SubscriptionReport.js
+++ b/frontend/src/components/SubscriptionReport.js
@@ -48,7 +48,9 @@ const SubscriptionReport = ({ timeRange, url, id, type }) => {
>
{metric.display_name}
- {metric.value}
+ {metric.display_name == "Total weth earned"
+ ? Number.parseInt(Number.parseInt(metric.value) / 1e18)
+ : metric.value}
);