From 3dc188351b341cc8865221320b0d78174674e6cc Mon Sep 17 00:00:00 2001
From: Mathias Wagner <germannewsmaker@gmail.com>
Date: Sun, 9 Jul 2023 16:52:40 +0200
Subject: [PATCH] Fixed the formatting in the Pricing.jsx

---
 src/pages/Pricing/Pricing.jsx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/pages/Pricing/Pricing.jsx b/src/pages/Pricing/Pricing.jsx
index 1afcc1e..ec0f9e9 100644
--- a/src/pages/Pricing/Pricing.jsx
+++ b/src/pages/Pricing/Pricing.jsx
@@ -49,13 +49,13 @@ const enterpriseFeatures = {
 export const Pricing = () => {
     return (
         <Stack direction="row" gap={3} alignItems="center" justifyContent="center" flexWrap="wrap"
-                sx={{mt: 10, mb: 2}}>
+               sx={{mt: 10, mb: 2}}>
 
             <Plan name="Personal" price="Kostenlos" features={personalFeatures}/>
             <Plan name="Plus" price="4,99€/Monat" features={plusFeatures}/>
-            <Plan name="Pro" price="9,99€/Monat" features={proFeatures}/>
+           <Plan name="Pro" price="9,99€/Monat" features={proFeatures}/>
             <Plan name="Enterprise" price="Auf Anfrage" features={enterpriseFeatures}/>
 
         </Stack>
-)
+    )
 }
\ No newline at end of file