From 15050031d10ea93cae75c2d40817befa5f7321de Mon Sep 17 00:00:00 2001 From: rozetko Date: Thu, 19 Jan 2023 15:31:29 +0300 Subject: [PATCH] lint fix --- src/utils/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index 86e4a09..07acebd 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -24,9 +24,7 @@ export function convertTimestampToDate(timestamp?: number): string { minute: 'numeric', second: 'numeric', }; - return timestamp ? - new Date(timestamp).toLocaleString('en-GB', options): - '-'; + return timestamp ? new Date(timestamp).toLocaleString('en-GB', options) : '-'; } export function convertTimeZoneTypeToName(timeZone: TimeZone): string {