diff --git a/src/pages/Pricing/components/Plan/Plan.jsx b/src/pages/Pricing/components/Plan/Plan.jsx index a299cfd..a1c4b31 100644 --- a/src/pages/Pricing/components/Plan/Plan.jsx +++ b/src/pages/Pricing/components/Plan/Plan.jsx @@ -14,7 +14,7 @@ export const Plan = ({name, price, features = {}}) => { Logo - {name.toUpperCase()} + {name.toUpperCase()} {price} @@ -23,8 +23,8 @@ export const Plan = ({name, price, features = {}}) => { {Object.entries(features).map(([key, value]) => ( {value === false ? - : } - {value} {key} + : } + {value} {key} ))}