Skip to content

Commit

Permalink
removed unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
agnieszkajarosikloj committed Jan 27, 2023
1 parent 0058097 commit 820f94d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ export interface Props {
activeStageId: Stages;
}

const LockedIncorporationForm = ({ formValues, activeStageId, editForm }: Props) => {
const LockedIncorporationForm = ({
formValues,
activeStageId,
editForm,
}: Props) => {
const { alternativeName1: altName1, alternativeName2: altName2 } = formValues;
const alternativeNames = useMemo(
() => [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import classNames from 'classnames';

import Button from '~core/Button';
import Icon from '~core/Icon';
import { Tooltip } from '~core/Popover';
import { StageObject, ValuesType } from '~pages/IncorporationPage/types';
import { Stages as StagesEnum } from '~pages/IncorporationPage/constants';
import { Motion } from '~pages/ExpenditurePage/types';
Expand Down

0 comments on commit 820f94d

Please sign in to comment.