Skip to content

Commit

Permalink
fix: remove unecessary fls/gls check for a380
Browse files Browse the repository at this point in the history
  • Loading branch information
BravoMike99 committed Dec 18, 2024
1 parent 380161e commit 5ed462b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -658,8 +658,6 @@ class LsReminderIndicator extends DisplayComponent<{ bus: EventBus }> {

private readonly lsReminder = FSComponent.createRef<SVGTextElement>();

private readonly glsMlsFlsOrLocVnavInstalled = Subject.create(true);

private readonly fwcFlightPhase = ConsumerSubject.create(this.sub.on('fwcFlightPhase'), 0);

private readonly fmgcFlightPhase = ConsumerSubject.create(this.sub.on('fmgcFlightPhase'), FmgcFlightPhase.Preflight);
Expand Down Expand Up @@ -700,7 +698,7 @@ class LsReminderIndicator extends DisplayComponent<{ bus: EventBus }> {
render(): VNode {
return (
<text class="FontLargest Amber Blink9Seconds" x="104.33" y="124.8" ref={this.lsReminder}>
{this.glsMlsFlsOrLocVnavInstalled.map((v) => (v ? 'LS' : 'ILS'))}
LS
</text>
);
}
Expand Down

0 comments on commit 5ed462b

Please sign in to comment.