Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenthoms committed Oct 13, 2023
1 parent 5f09194 commit 59fed68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/framework/Broadcaster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ export type InputBroadcastChannelDef = {
};

export function checkChannelCompatibility(
channelDef1: BroadcastChannelDef,
channelDef: BroadcastChannelDef,
channelKeyCategory: BroadcastChannelKeyCategory
): boolean {
if (channelDef1.key !== channelKeyCategory) {
if (channelDef.key !== channelKeyCategory) {
return false;
}

Expand Down

0 comments on commit 59fed68

Please sign in to comment.