Skip to content

Commit

Permalink
fix(fim): event type guard was incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMcIntosh committed Mar 8, 2024
1 parent 292f564 commit 4fd2401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/events/statistic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export function isReceiveFillInTheMiddleDataError(
): action is ReceiveFillInTheMiddleDataError {
if (!isActionToStatistic(action)) return false;
return (
action.type !==
action.type ===
EVENT_NAMES_TO_STATISTIC.RECEIVE_FILL_IN_THE_MIDDLE_DATA_ERROR
);
}
Expand Down

0 comments on commit 4fd2401

Please sign in to comment.