From 948fa78ab5e40936be278457ee841e82f7f4b39a Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Wed, 25 Jan 2023 19:34:01 +0800 Subject: [PATCH] Fix types --- .../web/lib/networking/mutations/markEmailAsItemMutation.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web/lib/networking/mutations/markEmailAsItemMutation.ts b/packages/web/lib/networking/mutations/markEmailAsItemMutation.ts index 9f8fb8d9b..fc6e60690 100644 --- a/packages/web/lib/networking/mutations/markEmailAsItemMutation.ts +++ b/packages/web/lib/networking/mutations/markEmailAsItemMutation.ts @@ -5,12 +5,12 @@ type MarkEmailAsItemDataResponseData = { } type MarkEmailAsItemData = { - success: Boolean + success: boolean errorCodes?: unknown[] } export async function markEmailAsItemMutation( - recentEmailId: String + recentEmailId: string ): Promise { const mutation = ` mutation MarkRecentEmailAsItem($recentEmailId: ID!) {