Skip to content

Commit

Permalink
chore: resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
lewis committed Nov 9, 2023
2 parents bd18888 + 0989e5a commit 626d4ae
Show file tree
Hide file tree
Showing 16 changed files with 32,503 additions and 15 deletions.
2 changes: 1 addition & 1 deletion packages/client/.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VITE_CHAIN_ID=4242
VITE_CHAIN_ID=33784
TEST_CHAIN_ID=31337
2 changes: 1 addition & 1 deletion packages/client/src/_theme.scss
Original file line number Diff line number Diff line change
@@ -1 +1 @@
$cellSize: 48px;
$cellSize: 72px;
2 changes: 1 addition & 1 deletion packages/client/src/components/Fog/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
top: -150vh;
width: 300vw;
height: 300vh;
background: radial-gradient(circle closest-side at 50% 50%, #00000000 200px, #000000ff 24%);
background: radial-gradient(circle closest-side at 50% 50%, #00000000 300px, #000000ff 64%);
pointer-events: none;
// display: none;
}
4 changes: 2 additions & 2 deletions packages/client/src/mud/getNetworkConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const worlds = worldsJson as Partial<Record<string, { address: string; blockNumb

export async function getNetworkConfig() {
const params = new URLSearchParams(window.location.search);
// const chainId = Number(params.get("chainId") || params.get("chainid") || (import.meta.env.DEV ? import.meta.env.TEST_CHAIN_ID : import.meta.env.VITE_CHAIN_ID) || 31337);
const chainId = 33784;
const chainId = Number(params.get("chainId") || params.get("chainid") || (import.meta.env.DEV ? import.meta.env.TEST_CHAIN_ID : import.meta.env.VITE_CHAIN_ID) || 31337);
// const chainId = 33784;
// const chainId = 31337;
// const chainId = 421613;
// console.log(supportedChains);
Expand Down
Loading

0 comments on commit 626d4ae

Please sign in to comment.