diff --git a/docs/guides/js-waku/reliable-channels.md b/docs/guides/js-waku/reliable-channels.md index 47260f7..8e6432b 100644 --- a/docs/guides/js-waku/reliable-channels.md +++ b/docs/guides/js-waku/reliable-channels.md @@ -71,7 +71,7 @@ The Waku node will emit `health` events to help you know whether the node is con This can be useful to give feedback to the user, or stop some action (e.g. sending messages) when offline: ```js -import { HealthStatus, WakuEvent } from "@waku/sdk"; +import { HealthStatus } from "@waku/sdk"; node.events.addEventListener("waku:health", (event) => { const health = event.detail;