diff --git a/flybywire-aircraft-a320-neo/html_ui/Pages/A32NX_Utils/bitFlags.js b/flybywire-aircraft-a320-neo/html_ui/Pages/A32NX_Utils/bitFlags.js
index 65172a444dbe..aa54454fd3ec 100644
--- a/flybywire-aircraft-a320-neo/html_ui/Pages/A32NX_Utils/bitFlags.js
+++ b/flybywire-aircraft-a320-neo/html_ui/Pages/A32NX_Utils/bitFlags.js
@@ -107,12 +107,16 @@ class SeatFlags extends BitFlags {
}
isSeatFilled(seatId) {
- if (seatId > this.totalSeats) { return false; }
+ if (seatId > this.totalSeats) {
+ return false;
+ }
return this.getBitIndex(seatId);
}
toggleSeatId(seatId) {
- if (seatId > this.totalSeats) { return; }
+ if (seatId > this.totalSeats) {
+ return;
+ }
this.toggleBitIndex(seatId);
}