Skip to content

Commit

Permalink
chore: resolve conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
lewis committed Oct 16, 2023
1 parent 5fa4827 commit 1b9e8ae
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
3 changes: 0 additions & 3 deletions packages/client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ export const App = () => {
<BrowserRouter>
<Routes>
<Route path="/">
<<<<<<< HEAD
=======
{/*<Route index element={<Game />} />*/}
>>>>>>> 79480b45a422439a77d4380ef42b0c72297f51a7
<Route index element={<Home />} />
<Route path="game" element={<Game />} />
<Route path="test" element={<Test />} />
Expand Down
8 changes: 0 additions & 8 deletions packages/client/src/mud/createSystemCalls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ export function createSystemCalls(
};

const move = async (steps) => {
<<<<<<< HEAD
console.log('move', steps)
const tx = await worldContract.write.move([steps]);
=======
console.log(worldContract)
const tx = await worldContract.write.move([steps]);
await waitForTransaction(tx);
Expand All @@ -38,7 +34,6 @@ export function createSystemCalls(
const result = await waitForTransaction(tx);
console.log(result);
// return getComponentValue(GameSystem, singletonEntity);
>>>>>>> 79480b45a422439a77d4380ef42b0c72297f51a7
await waitForTransaction(tx);
};

Expand All @@ -50,10 +45,7 @@ export function createSystemCalls(
return {
increment,
move,
<<<<<<< HEAD
=======
getPosition,
>>>>>>> 79480b45a422439a77d4380ef42b0c72297f51a7
joinBattlefield
};
}

0 comments on commit 1b9e8ae

Please sign in to comment.