Skip to content

Commit f6000a0

Browse files
committed
fix: minor
1 parent b852e95 commit f6000a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"scripts": {
2626
"clear": "rm -fr ../.parcel-cache dist/bundle.js",
2727
"start": "yarn generate && parcel",
28-
"start-local": "REACT_APP_SUBGRAPH_ENDPOINT=http://localhost:8000/subgraphs/name/kleros/kleros-v2-core-local parcel",
28+
"start-local": "REACT_APP_KLEROS_CORE_SUBGRAPH_TESTNET=http://localhost:8000/subgraphs/name/kleros/kleros-v2-core-local parcel",
2929
"build": "yarn generate && yarn parcel build",
3030
"check-style": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
3131
"check-types": "tsc --noEmit",

web/src/utils/graphqlQueryFnHelper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const graphqlQueryFnHelper = async (
1717
) => {
1818
const coreUrl =
1919
process.env[`REACT_APP_KLEROS_CORE_SUBGRAPH_${DEPLOYMENT}`] ??
20-
"https://api.thegraph.com/subgraphs/name/alcercu/disputetemplateregistryarbgrli";
20+
"https://api.thegraph.com/subgraphs/name/alcercu/kleroscoretest";
2121
const url = isDisputeTemplate ? CHAINID_TO_DISPUTETEMPLATE_SUBGRAPH[chainId] : coreUrl;
2222
return request(url, query, parametersObject);
2323
};

0 commit comments

Comments
 (0)