diff --git a/src/pages/settings/GeneralSettings.tsx b/src/pages/settings/GeneralSettings.tsx index 8766f54..821ac85 100644 --- a/src/pages/settings/GeneralSettings.tsx +++ b/src/pages/settings/GeneralSettings.tsx @@ -57,6 +57,7 @@ const GeneralSettings: FC = () => { logo: "", serviceArea: undefined, establishedYear: undefined, + domain: "", }, validationSchema, onSubmit: (values) => { @@ -114,6 +115,7 @@ const GeneralSettings: FC = () => { logo: restaurantData.logo || "", serviceArea: restaurantData.serviceArea || undefined, establishedYear: restaurantData.establishedYear ?? undefined, + domain: restaurantData.domain || "", }); } // eslint-disable-next-line react-hooks/exhaustive-deps @@ -131,6 +133,16 @@ const GeneralSettings: FC = () => {