From cc52e3614d9b6723f4ce8ab6385d626f0fcc54d7 Mon Sep 17 00:00:00 2001 From: "web@ppanel" Date: Mon, 29 Dec 2025 08:17:45 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20Update=20SubscribeTable?= =?UTF-8?q?=20to=20display=20inventory=20using=20Display=20component=20for?= =?UTF-8?q?=20better=20clarity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/admin/src/sections/product/subscribe-table.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/admin/src/sections/product/subscribe-table.tsx b/apps/admin/src/sections/product/subscribe-table.tsx index 8287987..de846e8 100644 --- a/apps/admin/src/sections/product/subscribe-table.tsx +++ b/apps/admin/src/sections/product/subscribe-table.tsx @@ -211,7 +211,7 @@ export default function SubscribeTable() { cell: ({ row }) => { const inventory = row.getValue("inventory") as number; return inventory === -1 ? ( - t("unlimited") + ) : ( );