From 054339cc0d6874c0b4066bad08aea8e2853aa1a6 Mon Sep 17 00:00:00 2001 From: Zakhar Timoshenko Date: Mon, 27 May 2024 03:58:37 +0300 Subject: [PATCH] fix --- src/features/Complains/helpers/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/Complains/helpers/index.ts b/src/features/Complains/helpers/index.ts index 9b7555f..87104d4 100644 --- a/src/features/Complains/helpers/index.ts +++ b/src/features/Complains/helpers/index.ts @@ -12,7 +12,7 @@ export const getMinutesString = (amount: number, secondWord = `назад`): str } export const getDirectionString = (direction: Directions): string => { - return direction === `in` ? `в Ксты` : `из Кстов` + return direction === `in` ? `из Кстов` : `в Ксты` } export const getTypeString = (type: ComplainType): string => {