Skip to content

Commit

Permalink
fix(pfd): missing trailing comma after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
lukecologne committed May 12, 2023
1 parent d617d41 commit 6ed6829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fbw-a32nx/src/systems/instruments/src/PFD/FMA.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ class BC3Cell extends DisplayComponent<{ isAttExcessive: Subscribable<boolean>,

private fillBC3Cell() {
const [text, className] = getBC3Message(
this.isAttExcessive, this.tcasArmed, this.setHoldSpeed, this.trkFpaDeselected, this.tcasRaInhibited, this.fcdcDiscreteWord1, this.fwcFlightPhase, this.tdReached
this.isAttExcessive, this.tcasArmed, this.setHoldSpeed, this.trkFpaDeselected, this.tcasRaInhibited, this.fcdcDiscreteWord1, this.fwcFlightPhase, this.tdReached,
);
this.classNameSub.set(`FontMedium MiddleAlign ${className}`);
if (text !== null) {
Expand Down

0 comments on commit 6ed6829

Please sign in to comment.