From 463430b61753d6786e8fa0551f0f83f28162df6b Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Sun, 20 Feb 2022 00:22:49 +0100 Subject: [PATCH] remove unused property from BookFormData type --- context/book.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/context/book.tsx b/context/book.tsx index 4059d15..34b779c 100644 --- a/context/book.tsx +++ b/context/book.tsx @@ -5,9 +5,7 @@ import { clearBookingData, loadBookingData } from '../helpers/storage' import { createBooking } from '../helpers/booking' import { Booking } from '../db/booking' -export type BookFormData = Omit & { - storeData?: boolean -} +export type BookFormData = Omit type BookingProviderState = { postData?: boolean