diff --git a/app/routes/store.$storeId.financial-dashboard._index.tsx b/app/routes/store.$storeId.financial-dashboard._index.tsx index 6c08caa..ca26018 100644 --- a/app/routes/store.$storeId.financial-dashboard._index.tsx +++ b/app/routes/store.$storeId.financial-dashboard._index.tsx @@ -70,32 +70,41 @@ export default function FinancialDashboard() { ]; return (
{item.title}
+ }} + role="button" + key={index} + tabIndex={0} + onKeyDown={(e) => { + if (e.key === "Enter") { + cashFunds(item.link); + } + }} + className="border-b flex items-center w-full p-4 bg-WHITE hover:bg-WHITE3 cursor-pointer lg:border lg:border-WHITE3 lg:rounded-2xl lg:p-6 lg:items-start lg:hover:shadow-md lg:transition-shadow" + > +{item.title}
+{item.description}
{item.description}
++
{parseInt(product.basePrice).toLocaleString("fa-IR")} تومان
)}