diff --git a/packages/dashboard-v2/src/pages/upgrade.js b/packages/dashboard-v2/src/pages/upgrade.js index 49dac826..894c8273 100644 --- a/packages/dashboard-v2/src/pages/upgrade.js +++ b/packages/dashboard-v2/src/pages/upgrade.js @@ -59,7 +59,7 @@ const Price = ({ price }) => ( ); -const bandwidth = (value) => parseFloat(bytes(value, { bits: true, binary: true })); +const bandwidth = (value) => `${bytes(value, { bits: true })}/s`; const storage = (value) => bytes(value, { binary: true }); @@ -71,7 +71,7 @@ const PlansSlider = () => { if (userError || plansError) { return ( -
+

Oooops!

Something went wrong, please try again later.

@@ -99,16 +99,18 @@ const PlansSlider = () => { {!isHigherThanCurrent && !isCurrent && "Choose"}
- + {plan.limits && ( + + )} ); })}