diff --git a/src/app/tenders/[details]/page.tsx b/src/app/tenders/[details]/page.tsx
index 3729900..7250468 100644
--- a/src/app/tenders/[details]/page.tsx
+++ b/src/app/tenders/[details]/page.tsx
@@ -7,7 +7,11 @@ import Status from "@/components/ui/Status";
import { useTenderDetailQuery } from "@/hooks/queries";
import { useGetFlagQuery } from "@/hooks/queries/useFlagsQueries";
import { cn } from "@/lib/utils";
-import { isValidAlpha2CountryCode, msToDate, truncateString } from "@/utils/shared";
+import {
+ isValidAlpha2CountryCode,
+ truncateString,
+ unixToDate,
+} from "@/utils/shared";
import getSymbolFromCurrency from "currency-symbol-map";
import Link from "next/link";
import { use } from "react";
@@ -82,11 +86,12 @@ const TenderDetails = ({ params }: IProps) => {
We couldn't load this tender
- Check your connection or try again. You can go back to the tender list anytime.
+ Check your connection or try again. You can go back to the tender
+ list anytime.
Back to tenders
@@ -114,13 +119,15 @@ const TenderDetails = ({ params }: IProps) => {