Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gigitux committed Mar 14, 2024
1 parent 6a547e2 commit 703845a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Expand Up @@ -2,7 +2,6 @@
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { addQueryArgs } from '@wordpress/url';
import classNames from 'classnames';
import { Button } from '@wordpress/components';
import { getNewPath } from '@woocommerce/navigation';
Expand All @@ -17,7 +16,7 @@ import { useSelect } from '@wordpress/data';
*/
import { Intro } from '.';
import { IntroSiteIframe } from './intro-site-iframe';
import { ADMIN_URL, getAdminSetting } from '~/utils/admin-settings';
import { getAdminSetting } from '~/utils/admin-settings';
import { navigateOrParent } from '../utils';
import { ThemeSwitchWarningModal } from '~/customize-store/intro/warning-modals';

Expand Down
Expand Up @@ -9,6 +9,7 @@ import {
} from '@wordpress/element';
import classnames from 'classnames';
import { __ } from '@wordpress/i18n';
import { addQueryArgs } from '@wordpress/url';

/**
* Internal dependencies
Expand All @@ -21,7 +22,6 @@ import { Product, ProductType } from '../product-list/types';
import { appendURLParams } from '../../utils/functions';
import { ADMIN_URL, getAdminSetting } from '~/utils/admin-settings';
import { NoAIBanner } from '~/customize-store/intro/intro-banners';
import { addQueryArgs } from '@wordpress/url';

export default function ProductListContent( props: {
products: Product[];
Expand Down

0 comments on commit 703845a

Please sign in to comment.