Skip to content

Commit

Permalink
Reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
norbye committed Jan 30, 2025
1 parent 6c60dd0 commit a9e5264
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/components/UserValidator/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { Button, Flex, Icon, Modal } from '@webkom/lego-bricks';
import { get, debounce } from 'lodash';
import { Check, ScanQrCode, X } from 'lucide-react';
import { ReactNode, useCallback, useRef, useState } from 'react';
import { useCallback, useRef, useState } from 'react';
import { QrReader } from 'react-qr-reader';
import { useNavigate, useParams } from 'react-router-dom';
import { autocomplete } from 'app/actions/SearchActions';
import goodSound from 'app/assets/good-sound.mp3';
import SearchPage from 'app/components/Search/SearchPage';
import TextWithIcon from 'app/components/TextWithIcon';
import {
selectAutocompleteRedux,
type UserSearchResult,
Expand All @@ -15,8 +16,8 @@ import { addToast } from 'app/reducers/toasts';
import { useAppDispatch, useAppSelector } from 'app/store/hooks';
import styles from './Validator.module.css';
import type { SearchUser } from 'app/store/models/User';
import type { ReactNode } from 'react';
import type { Required } from 'utility-types';
import TextWithIcon from 'app/components/TextWithIcon';

type UserWithUsername = Required<Partial<UserSearchResult>, 'username'>;

Expand Down

0 comments on commit a9e5264

Please sign in to comment.