From 7886f0640673165f1896337c46eb11d5f8b3672d Mon Sep 17 00:00:00 2001 From: Keshav Bhatt Date: Mon, 11 Nov 2024 17:02:14 +0530 Subject: [PATCH] chore: remove redundant casting --- src/store/actions/conv-action.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/actions/conv-action.ts b/src/store/actions/conv-action.ts index 03e67383e..54446654a 100644 --- a/src/store/actions/conv-action.ts +++ b/src/store/actions/conv-action.ts @@ -18,7 +18,7 @@ import type { export const convAction = createAsyncThunk( 'convAction', async ({ ids, operation, parent, tagName, constrains }) => { - const { action } = (await soapFetch('ConvAction', { + const { action } = await soapFetch('ConvAction', { _jsns: 'urn:zimbraMail', action: omitBy( @@ -31,7 +31,7 @@ export const convAction = createAsyncThunk