Skip to content

Commit

Permalink
apps/hubble/src/profile/gossipProfileWorker.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
intls committed Dec 10, 2024
1 parent 602f963 commit 3e84957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/hubble/src/profile/gossipProfileWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ parentPort?.on("message", (data) => {
} else if (action === ProfileWorkerAction.GetMultiAddres) {
const response = getMultiAddrs();
parentPort?.postMessage({ id, action, response });
} else if (action === ProfileWorkerAction.ConnectToMutliAddr) {
} else if (action === ProfileWorkerAction.ConnectToMultiAddr) {
const { multiAddr } = args as ConnectToMultiAddrArgs;
connectToMultiAddr(multiAddr);

Expand Down

0 comments on commit 3e84957

Please sign in to comment.