Skip to content

Commit

Permalink
build: bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Majorfi committed Jan 12, 2024
1 parent b9b87c3 commit d575365
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@yearn-finance/web-lib",
"version": "3.0.92",
"version": "3.0.94",
"main": "./dist/index.js",
"types": "./dist/index.d.js",
"files": [
Expand Down
8 changes: 4 additions & 4 deletions src/hooks/useBalances.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,10 +437,10 @@ export function useBalances(props?: TUseBalancesReq): TUseBalancesRes {
status: status.isError
? 'error'
: status.isLoading || status.isFetching
? 'loading'
: status.isSuccess
? 'success'
: 'unknown'
? 'loading'
: status.isSuccess
? 'success'
: 'unknown'
}),
[
error,
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noEmit": true
"strictPropertyInitialization": true
},
"include": ["src"],
"exclude": ["**/node_modules", "**/dist", "**/.turbo"]
Expand Down

0 comments on commit d575365

Please sign in to comment.