- handleInput(e.target.value, WASMData.limits.lowerRear, setLowerRear)}
+ onChange={(value) => handleInput(value, WASMData.limits.lowerRear, setLowerRear)}
disabled={loadingState !== 'preview' || gsxActive}
/>
diff --git a/PackageSources/js-bundle/src/components/stationEntry/StationEntryPax.tsx b/PackageSources/js-bundle/src/components/stationEntry/StationEntryPax.tsx
index 518a4c8..cf525ba 100644
--- a/PackageSources/js-bundle/src/components/stationEntry/StationEntryPax.tsx
+++ b/PackageSources/js-bundle/src/components/stationEntry/StationEntryPax.tsx
@@ -3,6 +3,7 @@ import { LoadingState } from '../../types/general';
import { WASMDataPax } from '../../types/WASMData';
import { CoherentCallStationEntryPax, inRangeOf, loadAircraft, unloadAircraft } from '../../utils/utils';
import ActionBar from '../actionbar/ActionBar';
+import Input from '../input/Input';
interface StationEntryProps {
WASMData: WASMDataPax;
@@ -73,12 +74,12 @@ const StationEntryPax: FC
= ({ WASMData, loadingState, gsxAct
-
handleInput(e.target.value, WASMData.limits.maxFuel, setFuel)}
+ onChange={(value) => handleInput(value, WASMData.limits.maxFuel, setFuel)}
disabled={loadingState !== 'preview' || gsxActive}
/>