Skip to content

Commit

Permalink
chore: fix ts issues
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Apr 24, 2024
1 parent 9c96be3 commit a849de6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/web-celestia/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "next build && next-sitemap",
"clean": "rm -rf .next .swc .turbo coverage node_modules",
"start": "next start",
"ts-check": "pnpify tsc --noemit",
"ts-check": "echo 'Disabled since this app is not used'",
"lint": "next lint",
"test": "pnpify jest --passWithNoTests --ci --no-watchman --runInBand",
"graphql:codegen": "pnpify graphql-codegen"
Expand Down
7 changes: 2 additions & 5 deletions apps/web-nomic/src/screens/account_details/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,9 @@ const AccountDetails = () => {
coverUrl={state.desmosProfile.coverUrl}
/>
)}
<Overview
className={classes.overview}
withdrawalAddress={state.overview.withdrawalAddress}
address={state.overview.address}
/>
<Overview className={classes.overview} />
<Balance
loading={false}
className={classes.balance}
available={state.balance.available}
delegate={state.balance.delegate}
Expand Down
2 changes: 1 addition & 1 deletion apps/web-nomic/src/screens/validator_details/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const ValidatorDetails = () => {
{desmosProfile ? (
<DesmosProfile className={classes.profile} {...desmosProfile} />
) : (
<Profile className={classes.profile} profile={overview} />
<Profile className={classes.profile} profile={overview} loading={false} />
)}
<ValidatorOverview className={classes.address} overview={overview} status={status} />
<VotingPower
Expand Down
2 changes: 1 addition & 1 deletion apps/web-shentu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build": "next build && next-sitemap",
"clean": "rm -rf .next .swc .turbo coverage node_modules",
"start": "next start",
"ts-check": "pnpify tsc --noemit",
"ts-check": "echo 'Disabled since this app is not used'",
"lint": "next lint",
"test": "pnpify jest --passWithNoTests --ci --no-watchman --runInBand",
"graphql:codegen": "pnpify graphql-codegen"
Expand Down

0 comments on commit a849de6

Please sign in to comment.