We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d194472 + a2972be commit 74c2fe8Copy full SHA for 74c2fe8
1 file changed
src/pages/Wallet/WalletTable.tsx
@@ -132,6 +132,7 @@ export const WalletTable = () => {
132
useGetUsersMePendingBootyQuery({
133
filterBy: { isExpired: 1 },
134
});
135
+
136
// initial requests
137
useEffect(() => {
138
const cols = walletColumns(dispatch, t);
@@ -291,7 +292,7 @@ export const WalletTable = () => {
291
292
</Tab>
293
<Tab
294
id="expired"
- disabled={expiredBootyData?.size === 0 || isExpiredBootyLoading}
295
+ disabled={isExpiredBootyLoading || !expiredBootyData}
296
title={
297
<span className="aq-mx-3-lg">{t("__WALLET_EXPIRED_TAB")}</span>
298
}
0 commit comments