From d46b5fa50d004f96bba6a6f5f5183e4727dc3c37 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