fix(birthday): remove package select field from booking form
Some checks are pending
CI / Type Check (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Unit Tests (push) Waiting to run
Deploy / Build & Push Image (push) Waiting to run
Deploy / Deploy to VPS (push) Blocked by required conditions

This commit is contained in:
Vadym Samoilenko 2026-06-03 13:43:10 +01:00
parent 480b10feed
commit 4c31fc6d21

View file

@ -134,23 +134,6 @@ export function BirthdayBookingForm({ defaultPackage }: BirthdayBookingFormProps
/>
</Field>
<Field label="Пакет" htmlFor="bd-pkg">
<select
id="bd-pkg"
value={packageSlug}
onChange={(e) => setPackageSlug(e.target.value)}
className={INPUT_CLS}
style={{ fontFamily: FONT }}
>
<option value="">Оберіть пакет</option>
{PACKAGES.map((p) => (
<option key={p.value} value={p.value}>
{p.label}
</option>
))}
</select>
</Field>
<Field label="Кількість гостей" htmlFor="bd-guests">
<input
id="bd-guests"