fix: add .js to base protocol import in filter sdk (#2009)

This commit is contained in:
Arseniy Klempner 2024-05-14 00:36:10 -07:00 committed by GitHub
parent f78495a5a2
commit 6f188ef379
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ import {
toAsyncIterator
} from "@waku/utils";
import { BaseProtocolSDK } from "./base_protocol";
import { BaseProtocolSDK } from "./base_protocol.js";
type SubscriptionCallback<T extends IDecodedMessage> = {
decoders: IDecoder<T>[];