From 655a8e48e8a9157ed75a82f53d16bd454090d649 Mon Sep 17 00:00:00 2001 From: Andrey Mikhadyuk Date: Tue, 21 Nov 2023 13:41:09 +0300 Subject: [PATCH] fix getQueryParam import for tests --- src/store/states/inbox/reducer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/states/inbox/reducer.ts b/src/store/states/inbox/reducer.ts index 6e41a4299c..3794a6f44c 100644 --- a/src/store/states/inbox/reducer.ts +++ b/src/store/states/inbox/reducer.ts @@ -8,7 +8,7 @@ import { FeedLayoutItemWithFollowData, } from "@/shared/interfaces"; import { ChatChannel, CommonFeed, Timestamp } from "@/shared/models"; -import { getQueryParam } from "@/shared/utils"; +import { getQueryParam } from "@/shared/utils/queryParams"; import * as actions from "./actions"; import { InboxItems, InboxState } from "./types"; import { getFeedLayoutItemDateForSorting } from "./utils";