From 19c86c99553447b54a07f4fdb0f7a4de67340efc Mon Sep 17 00:00:00 2001 From: parsa aghaei Date: Wed, 22 Jul 2026 14:12:14 +0330 Subject: [PATCH] fix(archive): add missing import for toPersian utility --- frontend/application/components/ArchivePage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/application/components/ArchivePage.tsx b/frontend/application/components/ArchivePage.tsx index 6b1ee6b..5fdb842 100644 --- a/frontend/application/components/ArchivePage.tsx +++ b/frontend/application/components/ArchivePage.tsx @@ -1,5 +1,6 @@ "use client"; import React, { useState, useMemo, useEffect } from "react"; +import { toPersian } from "../lib/utils"; import { Product, PetType } from "../lib/data/products"; import { usePetStore } from "../lib/store/usePetStore"; import { productService } from "../lib/services/productService";