Skip to content

Commit bae128e

Browse files
authored
chore: clean check + bump packages (#1342)
1 parent 2868b23 commit bae128e

File tree

3 files changed

+44
-39
lines changed

3 files changed

+44
-39
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"@emotion/react": "^11.13.3",
1010
"@emotion/styled": "^11.13.0",
1111
"@fingerprintjs/fingerprintjs": "^3",
12-
"@lifi/explorer": "^0.0.1-alpha.14",
12+
"@lifi/explorer": "^0.0.1",
1313
"@lifi/sdk": "^3.2.3",
1414
"@lifi/types": "^15.13.0",
1515
"@lifi/wallet-management": "^3.1.6",
16-
"@lifi/widget": "^3.6.1",
16+
"@lifi/widget": "^3.6.2",
1717
"@mui/icons-material": "^5.16.7",
1818
"@mui/material": "^5.16.7",
1919
"@mui/material-nextjs": "^5.16.6",

src/components/ProfilePage/ProfilePage.tsx

+31-7
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,25 @@ import { QuestCarousel } from './QuestCarousel/QuestCarousel';
1313
import { QuestCompletedList } from './QuestsCompleted/QuestsCompletedList';
1414
import { Leaderboard } from './Leaderboard/Leaderboard';
1515
import { RewardsCarousel } from './Rewards/RewardsCarousel';
16-
import { useMerklRewardsOnCampaigns } from 'src/hooks/useMerklRewardsOnCampaigns';
16+
import {
17+
AvailableRewards,
18+
useMerklRewardsOnCampaigns,
19+
} from 'src/hooks/useMerklRewardsOnCampaigns';
20+
import { useMemo } from 'react';
21+
22+
const shouldHideComponent = (
23+
account: { address?: string } | undefined,
24+
isRewardLoading: boolean,
25+
isRewardSuccess: boolean,
26+
availableRewards: AvailableRewards[],
27+
) => {
28+
return (
29+
!account?.address ||
30+
isRewardLoading ||
31+
!isRewardSuccess ||
32+
availableRewards?.filter((e) => e?.amountToClaim > 0)?.length === 0
33+
);
34+
};
1735

1836
export const ProfilePage = () => {
1937
const { account } = useAccounts();
@@ -31,16 +49,22 @@ export const ProfilePage = () => {
3149
userAddress: account?.address,
3250
});
3351

52+
const hideComponent = useMemo(
53+
() =>
54+
shouldHideComponent(
55+
account,
56+
isRewardLoading,
57+
isRewardSuccess,
58+
availableRewards,
59+
),
60+
[account, isRewardLoading, isRewardSuccess, availableRewards],
61+
);
62+
3463
return (
3564
<>
3665
<ProfilePageContainer className="profile-page">
3766
<RewardsCarousel
38-
hideComponent={
39-
!account?.address ||
40-
isRewardLoading ||
41-
!isRewardSuccess ||
42-
availableRewards?.filter((e) => e?.amountToClaim > 0)?.length === 0
43-
}
67+
hideComponent={hideComponent}
4468
availableRewards={availableRewards}
4569
isMerklSuccess={isRewardSuccess}
4670
/>

yarn.lock

+11-30
Original file line numberDiff line numberDiff line change
@@ -2278,9 +2278,9 @@ __metadata:
22782278
languageName: node
22792279
linkType: hard
22802280

2281-
"@lifi/explorer@npm:^0.0.1-alpha.14":
2282-
version: 0.0.1-alpha.14
2283-
resolution: "@lifi/explorer@npm:0.0.1-alpha.14"
2281+
"@lifi/explorer@npm:^0.0.1":
2282+
version: 0.0.1
2283+
resolution: "@lifi/explorer@npm:0.0.1"
22842284
dependencies:
22852285
"@emotion/react": "npm:^11.11.1"
22862286
"@emotion/styled": "npm:^11.11.0"
@@ -2290,7 +2290,7 @@ __metadata:
22902290
"@mui/material": "npm:5.15.19"
22912291
"@tanstack/react-query": "npm:5.48.0"
22922292
"@tanstack/react-router": "npm:^1.46.4"
2293-
"@tanstack/react-virtual": "npm:^3.1.2"
2293+
"@tanstack/react-virtual": "npm:^3.10.8"
22942294
bignumber.js: "npm:^9.1.2"
22952295
ky: "npm:^1.1.3"
22962296
react: "npm:18.3.1"
@@ -2303,7 +2303,7 @@ __metadata:
23032303
"@mui/material": ^5.15.19
23042304
"@tanstack/react-query": 5.48.0
23052305
react: 18.3.1
2306-
checksum: 10/e0fc19cece6860663a3892b0cfe7df928918f75b82c7e4d1fac5b871b2c871c21963e14d9ea3ea8b1f18dcbea20b2d3ba08d6d6c015e6b8a82af847743139d53
2306+
checksum: 10/2a97bb8932e5141b45dbe11bab2d635470e7131c9d81f4742c07e0357d32dbb5fc345c19a35807e2af206c8b6ddcec561b1d1f02505163d1d8bc3c4892217cd4
23072307
languageName: node
23082308
linkType: hard
23092309

@@ -2374,9 +2374,9 @@ __metadata:
23742374
languageName: node
23752375
linkType: hard
23762376

2377-
"@lifi/widget@npm:^3.6.1":
2378-
version: 3.6.1
2379-
resolution: "@lifi/widget@npm:3.6.1"
2377+
"@lifi/widget@npm:^3.6.2":
2378+
version: 3.6.2
2379+
resolution: "@lifi/widget@npm:3.6.2"
23802380
dependencies:
23812381
"@emotion/react": "npm:^11.13.3"
23822382
"@emotion/styled": "npm:^11.13.0"
@@ -2420,7 +2420,7 @@ __metadata:
24202420
viem: ^2.17.0
24212421
wagmi: ^2.11.0
24222422
zustand: ^4.5.0
2423-
checksum: 10/ab9ca42750b7c484eb67a48bd518b8a0ace276d5d6d6d56efe1830e906af45626e58e3514347e81dbecc2a2822e418ceafcfe8f56e38210462cce940277a4f7b
2423+
checksum: 10/f1f18ccd55b983f2d27c033050c660190b67a095feff59946ca12484e045c7a993f11124dbdcc45cab0e0b2c6e115b7f007dd64571a3139b1eee67c13e2a8450
24242424
languageName: node
24252425
linkType: hard
24262426

@@ -4943,18 +4943,6 @@ __metadata:
49434943
languageName: node
49444944
linkType: hard
49454945

4946-
"@tanstack/react-virtual@npm:^3.1.2":
4947-
version: 3.9.0
4948-
resolution: "@tanstack/react-virtual@npm:3.9.0"
4949-
dependencies:
4950-
"@tanstack/virtual-core": "npm:3.9.0"
4951-
peerDependencies:
4952-
react: ^16.8.0 || ^17.0.0 || ^18.0.0
4953-
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
4954-
checksum: 10/36f32f86dcd1c914df3bfcc2836d6e291688e44745f076089ce059a7a2776280a62612686eecfb11fdd11ac3c23e7a42ee2178b94bcda549215f7d2674b37350
4955-
languageName: node
4956-
linkType: hard
4957-
49584946
"@tanstack/react-virtual@npm:^3.10.8":
49594947
version: 3.10.8
49604948
resolution: "@tanstack/react-virtual@npm:3.10.8"
@@ -4981,13 +4969,6 @@ __metadata:
49814969
languageName: node
49824970
linkType: hard
49834971

4984-
"@tanstack/virtual-core@npm:3.9.0":
4985-
version: 3.9.0
4986-
resolution: "@tanstack/virtual-core@npm:3.9.0"
4987-
checksum: 10/7d1ba9291ddc92269d87311578deab6b2a7171db52e0f88d0910b4db837af1af6b96304177fd96faca77bc1414e4e2dd7d9636a279eee83de61d33c9230d2637
4988-
languageName: node
4989-
linkType: hard
4990-
49914972
"@types/connect@npm:3.4.36":
49924973
version: 3.4.36
49934974
resolution: "@types/connect@npm:3.4.36"
@@ -9819,11 +9800,11 @@ __metadata:
98199800
"@esbuild-plugins/node-globals-polyfill": "npm:^0.2.3"
98209801
"@eslint/eslintrc": "npm:^3.1.0"
98219802
"@fingerprintjs/fingerprintjs": "npm:^3"
9822-
"@lifi/explorer": "npm:^0.0.1-alpha.14"
9803+
"@lifi/explorer": "npm:^0.0.1"
98239804
"@lifi/sdk": "npm:^3.2.3"
98249805
"@lifi/types": "npm:^15.13.0"
98259806
"@lifi/wallet-management": "npm:^3.1.6"
9826-
"@lifi/widget": "npm:^3.6.1"
9807+
"@lifi/widget": "npm:^3.6.2"
98279808
"@mui/icons-material": "npm:^5.16.7"
98289809
"@mui/material": "npm:^5.16.7"
98299810
"@mui/material-nextjs": "npm:^5.16.6"

0 commit comments

Comments
 (0)