diff --git a/src/main/utils/resolve-system-proxy/resolve-system-proxy-channel-responder.injectable.ts b/src/main/utils/resolve-system-proxy/resolve-system-proxy-channel-responder.injectable.ts index c7a1747770..acda5df1a7 100644 --- a/src/main/utils/resolve-system-proxy/resolve-system-proxy-channel-responder.injectable.ts +++ b/src/main/utils/resolve-system-proxy/resolve-system-proxy-channel-responder.injectable.ts @@ -5,7 +5,7 @@ import { getInjectable } from "@ogre-tools/injectable"; import resolveSystemProxyChannelInjectable from "../../../common/utils/resolve-system-proxy/resolve-system-proxy-channel.injectable"; import resolveSystemProxyInjectable from "./resolve-system-proxy.injectable"; -import { requestChannelListenerInjectionToken } from "../../../common/utils/channel/request-channel-listener-injection-token"; +import { requestChannelHandlerInjectionToken } from "../../../common/utils/channel/request-channel-listener-injection-token"; const resolveSystemProxyChannelResponderInjectable = getInjectable({ id: "resolve-system-proxy-channel-responder", @@ -15,7 +15,7 @@ const resolveSystemProxyChannelResponderInjectable = getInjectable({ handler: di.inject(resolveSystemProxyInjectable), }), - injectionToken: requestChannelListenerInjectionToken, + injectionToken: requestChannelHandlerInjectionToken, }); export default resolveSystemProxyChannelResponderInjectable;