Skip to content

Commit

Permalink
fix(web): fix wrong type assertion caused error (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
irvingoujAtDevolution authored Jun 6, 2024
1 parent 63743e9 commit 9f1b046
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export class WasmBridgeService {
type: SessionEventType.TERMINATED,
data: 'Session was terminated.',
});
return of(err);
throw err;
}),
map((termination_info: SessionTerminationInfo) => {
this.setVisibility(false);
Expand Down

0 comments on commit 9f1b046

Please sign in to comment.