Fix lint problems

This commit is contained in:
ivanThePleasant 2023-02-20 10:49:40 +02:00
parent da543d0702
commit 02de068bee
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
import React from 'react';
import { useIntl } from 'react-intl';
import PropTypes from 'prop-types';
import { Button } from '@strapi/design-system/Button';
import Envelop from '@strapi/icons/Envelop';
import { Button } from '@strapi/design-system';
import { Envelop } from '@strapi/icons';
const CreateAction = ({ onClick }) => {
const { formatMessage } = useIntl();

View File

@ -1,7 +1,7 @@
import React from 'react';
import { useIntl } from 'react-intl';
import { Flex, Tooltip, Icon, GridItem, Typography, Stack } from '@strapi/design-system';
import { Link } from '@strapi/design-system/v2/Link';
import { Link } from '@strapi/design-system/v2';
import { ExternalLink, ExclamationMarkCircle } from '@strapi/icons';
import { pxToRem } from '@strapi/helper-plugin';
import { useLicenseLimits } from '../../../../../../hooks';