Skip to content

Commit

Permalink
Fix import type, errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thecalcc committed Aug 26, 2024
1 parent 8a37dc5 commit e05b429
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/components/GeoLookupInput/AddGeoLookupInput.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import Geolookup from 'react-geolookup';
import DebounceInput from 'react-debounce-input';
import {DebounceInput} from 'react-debounce-input';

import {appConfig} from 'appConfig';
import {IRestApiResponse} from 'superdesk-api';
Expand Down
2 changes: 1 addition & 1 deletion client/components/UI/SearchBar/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import DebounceInput from 'react-debounce-input';
import {DebounceInput} from 'react-debounce-input';
import {isNil, uniqueId} from 'lodash';
import {gettext} from '../../../utils/gettext';
import './style.scss';
Expand Down
2 changes: 1 addition & 1 deletion client/components/UI/SearchField/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import PropTypes from 'prop-types';
import DebounceInput from 'react-debounce-input';
import {DebounceInput} from 'react-debounce-input';
import {uniqueId} from 'lodash';
import {KEYCODES} from '../constants';
import {onEventCapture} from '../utils';
Expand Down

0 comments on commit e05b429

Please sign in to comment.