Skip to content

Commit

Permalink
Organize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBartusek committed Mar 7, 2024
1 parent 3d5dbf7 commit 4ccfa89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions apps/client/src/components/Entity/EntityDeleteDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ import { Utils } from '../../utils/utils';
import Button from '../Button';
import EntityCard from '../EntityCard';
import Form from '../Form/Form';
import FormError from '../Form/FormError';
import FormField from '../Form/FormField';
import FormInput from '../Form/FormInput';
import IconButton from '../IconButton';
import Alert from '../Helpers/Alert';
import IconButton from '../IconButton';

export interface EntityDeleteDialogProps {
entityName: string;
Expand Down
4 changes: 2 additions & 2 deletions apps/client/src/components/WarehouseEntityInfo.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { useContext } from 'react';
import { BsCheckCircle, BsPencil, BsTrash } from 'react-icons/bs';
import { Link, useNavigate } from 'react-router-dom';
import { useNavigate } from 'react-router-dom';
import { WarehouseDto } from 'shared-types';
import { CurrentAppContext } from '../context/CurrentAppContext';
import { Utils } from '../utils/utils';
import EntityActionsRow from './Entity/EntityActionsRow';
import EntityInfoTable from './Entity/EntityInfoTable';
import IconButton from './IconButton';
import Alert from './Helpers/Alert';
import IconButton from './IconButton';

export interface WarehouseEntityInfoProps {
warehouse: WarehouseDto;
Expand Down

0 comments on commit 4ccfa89

Please sign in to comment.