From 8afa564cd57c11e321162fd56b45405e4db34172 Mon Sep 17 00:00:00 2001 From: miles-grant-ibigroup Date: Wed, 19 Apr 2023 13:26:18 -0400 Subject: [PATCH] lint --- lib/components/form/batch-settings.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/components/form/batch-settings.tsx b/lib/components/form/batch-settings.tsx index 106296111..1d8df2f22 100644 --- a/lib/components/form/batch-settings.tsx +++ b/lib/components/form/batch-settings.tsx @@ -6,6 +6,11 @@ import { populateSettingWithValue } from '@opentripplanner/trip-form' import { connect } from 'react-redux' +import { + decodeQueryParams, + DelimitedArrayParam, + encodeQueryParams +} from 'use-query-params' import { injectIntl, IntlShape } from 'react-intl' import { Search } from '@styled-icons/fa-solid/Search' import { SyncAlt } from '@styled-icons/fa-solid/SyncAlt' @@ -16,11 +21,6 @@ import type { ModeSettingValues } from '@opentripplanner/types' -import { - decodeQueryParams, - DelimitedArrayParam, - encodeQueryParams -} from 'use-query-params' import * as apiActions from '../../actions/api' import * as formActions from '../../actions/form' import { ComponentContext } from '../../util/contexts'