Skip to content

Commit

Permalink
minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed Sep 20, 2024
1 parent bf5568c commit 6975f63
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/application/machines/devtoolsMachine.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,7 @@ export function useDevToolsActorRef() {
}
const memoizedBound = useMemo<Pick<DevToolsActor, "send" | "on">>(
() => ({
send: (event) => {
// console.log("send", event);
contextValue.send(event);
},
send: contextValue.send.bind(contextValue),
on: contextValue.on.bind(contextValue),
}),
[contextValue]
Expand Down

0 comments on commit 6975f63

Please sign in to comment.