From 4c3b543536b948bb1157b1a3453a5f8d9a845d01 Mon Sep 17 00:00:00 2001 From: handfly Date: Mon, 4 May 2026 20:11:33 -0400 Subject: [PATCH] Fixed a number of unicode characters improperly inserted into text --- src/toolkit.jsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/toolkit.jsx b/src/toolkit.jsx index b2a5b59..de318d6 100644 --- a/src/toolkit.jsx +++ b/src/toolkit.jsx @@ -724,7 +724,7 @@ const ResultValue = ({ value, unit, danger, theme }) => ( MODULE: Fuel Order ══════════════════════════════════════════════════ */ const FuelOrderModule = ({ theme, volumeUnit }) => { - const [tempInput, setTempInput] = useState(""); + const [tempInput, setTempInput] = useState("15"); const [totalInput, setTotalInput] = useState(""); const [onBoardInput, setOnBoardInput] = useState(""); const [fuelInput, setFuelInput] = useState(""); @@ -869,7 +869,7 @@ const FuelOrderModule = ({ theme, volumeUnit }) => { {/* Density at 15°C */}
- +
setDensityInput(e.target.value)} @@ -895,7 +895,7 @@ const FuelOrderModule = ({ theme, volumeUnit }) => { {/* Optional: Total Required and On Board */}
- Optional \u2014 calculate fuel order + Optional {"\u2014"} calculate fuel order
@@ -1330,7 +1330,7 @@ const CrosswindModule = ({ theme }) => {
- + setRunwayInput(e.target.value.replace(/^0+(?=\d)/, ""))} placeholder="e.g. 27 or 270" style={inputStyle} {...focus} />
@@ -1500,7 +1500,7 @@ const FuelBucketsModule = ({ theme, aircraft, fuelProfile }) => { {/* Result */}
- Fuel Burn \u2014 {acData.label} + Fuel Burn {"\u2014"} {acData.label}
@@ -2868,8 +2868,8 @@ const FlightLevelModule = ({ theme }) => { {/* Legend and notes */}
- \u25cf E Eastbound 0\u00b0\u2013179\u00b0 - \u25cf W Westbound 186\u00b0\u2013359\u00b0 + {"\u25cf"} E Eastbound 0{"\u00b0\u2013"}179{"\u00b0"} + {"\u25cf"} W Westbound 186{"\u00b0\u2013"}359{"\u00b0"}
ATC clears flight level in meters. Set altimeter to corresponding feet value.
Onboard metric readout may differ from cleared value by up to 30 m due to rounding. @@ -3058,7 +3058,7 @@ const CrewRestModule = ({ theme }) => { type="text" value={crew[i]} onChange={(e) => !locked && updateCrew(i, e.target.value)} readOnly={locked} - placeholder={i < 3 ? "ID or name" : "optional"} + placeholder={i < 3 ? "ID" : "ID"} style={inputStyle} {...focus} />