From a1b6c04665f275c9874de0a7ad52913008450592 Mon Sep 17 00:00:00 2001 From: mohandast52 Date: Fri, 8 Nov 2024 13:34:00 +0530 Subject: [PATCH] fix(contracts): update available rewards title format in staking contracts --- apps/operate/components/Contracts/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/operate/components/Contracts/index.tsx b/apps/operate/components/Contracts/index.tsx index ad100d63..b52e2a17 100644 --- a/apps/operate/components/Contracts/index.tsx +++ b/apps/operate/components/Contracts/index.tsx @@ -52,7 +52,7 @@ const columns: ColumnsType = [ className: 'text-end', }, { - title: () => 'Available Rewards (OLAS)', + title: () => 'Available Rewards, OLAS', dataIndex: 'availableRewards', key: 'availableRewards', render: (availableRewards) => {formatWeiNumber({ value: availableRewards })},