From 5c2186ea2b61a11e22d377dbd51fdd910a18a537 Mon Sep 17 00:00:00 2001 From: cyrbuzz Date: Tue, 27 Feb 2024 14:47:08 +0800 Subject: [PATCH 1/2] fix: field name --- package.json | 4 ++-- src/hooks/useSortedIndexerDeployments.tsx | 2 +- yarn.lock | 17 ++++++++++++----- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index e450a4fdf..7afc79a89 100644 --- a/package.json +++ b/package.json @@ -25,8 +25,8 @@ "@subql/contract-sdk": "1.0.0", "@subql/network-clients": "1.1.0", "@subql/network-config": "1.1.1", - "@subql/network-query": "1.1.0", - "@subql/react-hooks": "1.1.0", + "@subql/network-query": "1.1.1", + "@subql/react-hooks": "1.1.1", "@web3-name-sdk/core": "^0.1.5", "@web3-react/core": "^6.1.9", "@web3-react/injected-connector": "^6.0.7", diff --git a/src/hooks/useSortedIndexerDeployments.tsx b/src/hooks/useSortedIndexerDeployments.tsx index bc499c4a7..8ecf844f6 100644 --- a/src/hooks/useSortedIndexerDeployments.tsx +++ b/src/hooks/useSortedIndexerDeployments.tsx @@ -119,7 +119,7 @@ export function useSortedIndexerDeployments(indexer: string): AsyncData Date: Tue, 27 Feb 2024 14:48:20 +0800 Subject: [PATCH 2/2] fix: tsc --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 7afc79a89..ed1412a6d 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "build:dev": "vite build --mode testnet", "build:staging": "vite build --mode staging", "build": "vite build", + "tsc": "tsc --skipLibCheck", "prepare": "husky install", "lint": "eslint src/**/*.{ts,tsx} --fix" },