Skip to content

Commit

Permalink
fix: transport not resolving
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaccoSordo committed Sep 19, 2024
1 parent e2cbbf6 commit c27e424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/beacon-dapp/src/dapp-client/DAppClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ export class DAppClient extends Client {
if (this._transport.isResolved()) {
const transport = await this.transport

if (transport.connectionStatus === TransportStatus.NOT_CONNECTED) {
if (transport.connectionStatus !== TransportStatus.CONNECTED) {
await transport.connect()
}
}
Expand Down

0 comments on commit c27e424

Please sign in to comment.