Skip to content

Commit

Permalink
fix(subsettings-pane): sort props
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-willis-arcadis committed Sep 23, 2024
1 parent 1b1e94d commit 46ee93f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/trip-form/src/MetroModeSelector/SubSettingsPane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,13 +158,13 @@ export const ModeSettingRenderer = ({

interface Props {
modeButton: ModeButtonDefinition;
onSettingUpdate: (QueryParamChangeEvent) => void;
onAllSubmodesDisabled?: (modeButton: ModeButtonDefinition) => void;
onSettingUpdate: (QueryParamChangeEvent) => void;
}
export default function SubSettingsPane({
modeButton,
onSettingUpdate,
onAllSubmodesDisabled
onAllSubmodesDisabled,
onSettingUpdate
}: Props): ReactElement {
const intl = useIntl();
const label = generateModeButtonLabel(modeButton.key, intl, modeButton.label);
Expand Down

0 comments on commit 46ee93f

Please sign in to comment.