diff --git a/public/locales/de/translation.json b/public/locales/de/translation.json index 7652e4d..0de921e 100644 --- a/public/locales/de/translation.json +++ b/public/locales/de/translation.json @@ -191,7 +191,6 @@ "products": [ { "name": "Basic", - "price": "9,99 € / Monat", "featuresCount": 9, "features": [ "Online Terminbucher", @@ -207,7 +206,6 @@ }, { "name": "Premium", - "price": "24,99 € / Monat", "featuresCount": 13, "features": [ "Online Terminbucher", diff --git a/public/locales/en/translation.json b/public/locales/en/translation.json index ca0b44c..587e181 100644 --- a/public/locales/en/translation.json +++ b/public/locales/en/translation.json @@ -191,7 +191,6 @@ "products": [ { "name": "Basic", - "price": "9,99 € / month", "featuresCount": 9, "features": [ "Online appointment booker", @@ -207,7 +206,6 @@ }, { "name": "Premium", - "price": "24,99 € / month", "featuresCount": 13, "features": [ "Online appointment booker", diff --git a/src/Pages/Authentication/SignUp.js b/src/Pages/Authentication/SignUp.js index 84ea183..9a1aecc 100644 --- a/src/Pages/Authentication/SignUp.js +++ b/src/Pages/Authentication/SignUp.js @@ -175,7 +175,6 @@ export function ChoosenProduct({ t, paymentPlan, extra }) { function CostSummary({ notificationApi, paymentPlan, form }) { const { t, i18n } = useTranslation(); - const appContext = useAppContext(); const [isRequesting, setIsRequesting] = useState(RequestState.INIT); const recaptchaRef = useRef(null);