diff --git a/package.json b/package.json index 56938f97..83c1fcc7 100644 --- a/package.json +++ b/package.json @@ -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": [ diff --git a/src/hooks/useBalances.ts b/src/hooks/useBalances.ts index 4dbc03bf..1d5ecc7b 100644 --- a/src/hooks/useBalances.ts +++ b/src/hooks/useBalances.ts @@ -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, diff --git a/tsconfig.json b/tsconfig.json index 6f507f54..5608c31e 100755 --- a/tsconfig.json +++ b/tsconfig.json @@ -25,8 +25,7 @@ "strict": true, "strictFunctionTypes": true, "strictNullChecks": true, - "strictPropertyInitialization": true, - "noEmit": true + "strictPropertyInitialization": true }, "include": ["src"], "exclude": ["**/node_modules", "**/dist", "**/.turbo"]