From 55a457af32ab6840c3ff83973ba1e948e14d0791 Mon Sep 17 00:00:00 2001 From: Mykhailo Mohyliuk Date: Tue, 25 Jul 2023 13:11:40 +0300 Subject: [PATCH] removed import --- client-web/src/store/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client-web/src/store/index.ts b/client-web/src/store/index.ts index 90cc4a15..8cb9f8b2 100644 --- a/client-web/src/store/index.ts +++ b/client-web/src/store/index.ts @@ -2,7 +2,6 @@ import create from "zustand"; import { immer } from "zustand/middleware/immer"; import { persist, devtools } from "zustand/middleware"; import * as http from "../http"; -import { TCombinedMimeType } from "../constants"; import { stat } from "fs"; import type { Stripe } from "stripe"; import { THomeScreen } from "../http"; @@ -106,7 +105,7 @@ export type TMessageHistory = { originalName?: string; location?: string; locationPreview?: string; - mimetype?: TCombinedMimeType; + mimetype?: string; xmlns: string; isReply?: boolean; mainMessage?: IMainMessage;