remove unused property from BookFormData type

This commit is contained in:
Thomas Ruoff
2022-02-20 00:22:49 +01:00
committed by Thomas Ruoff
parent 0aaca45c47
commit 463430b617

View File

@@ -5,9 +5,7 @@ import { clearBookingData, loadBookingData } from '../helpers/storage'
import { createBooking } from '../helpers/booking'
import { Booking } from '../db/booking'
export type BookFormData = Omit<Booking, 'uuid' | 'calendarEventId'> & {
storeData?: boolean
}
export type BookFormData = Omit<Booking, 'uuid' | 'calendarEventId'>
type BookingProviderState = {
postData?: boolean