Skip to content

Commit 88cc088

Browse files
committed
update imports
1 parent 16be104 commit 88cc088

File tree

8 files changed

+7
-8
lines changed

8 files changed

+7
-8
lines changed

src/Designer/frontend/app-development/features/aiAssistant/index.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/Designer/frontend/app-development/features/appContentLibrary/AppContentLibrary.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { screen, waitFor } from '@testing-library/react';
3-
import { AppContentLibrary } from './AppContentLibrary';
3+
import AppContentLibrary from './AppContentLibrary';
44
import { textMock } from '@studio/testing/mocks/i18nMock';
55
import { renderWithProviders } from '../../test/mocks';
66
import { createQueryClientMock } from 'app-shared/mocks/queryClientMock';

src/Designer/frontend/app-development/features/appPublish/pages/DeployPage.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { screen, waitForElementToBeRemoved } from '@testing-library/react';
3-
import { DeployPage } from './DeployPage';
3+
import DeployPage from './DeployPage';
44
import { textMock } from '@studio/testing/mocks/i18nMock';
55
import type { ServicesContextProps } from 'app-shared/contexts/ServicesContext';
66
import { renderWithProviders } from 'app-development/test/mocks';

src/Designer/frontend/app-development/features/appSettings/AppSettings.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { screen } from '@testing-library/react';
3-
import { AppSettings } from './AppSettings';
3+
import AppSettings from './AppSettings';
44
import { renderWithProviders } from 'app-development/test/mocks';
55
import { queriesMock } from 'app-shared/mocks/queriesMock';
66
import { createQueryClientMock } from 'app-shared/mocks/queryClientMock';

src/Designer/frontend/app-development/features/overview/components/Overview.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { screen } from '@testing-library/react';
3-
import { Overview } from './Overview';
3+
import Overview from './Overview';
44
import { APP_DEVELOPMENT_BASENAME } from 'app-shared/constants';
55
import { renderWithProviders } from '../../../test/testUtils';
66
import { textMock } from '@studio/testing/mocks/i18nMock';

src/Designer/frontend/app-development/features/processEditor/ProcessEditor.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { screen } from '@testing-library/react';
3-
import { ProcessEditor } from './ProcessEditor';
3+
import ProcessEditor from './ProcessEditor';
44
import { createQueryClientMock } from 'app-shared/mocks/queryClientMock';
55
import { renderWithProviders } from '../../test/testUtils';
66
import { QueryKey } from 'app-shared/types/QueryKey';

src/Designer/frontend/app-development/features/textEditor/TextEditor.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { renderWithProviders } from '../../test/testUtils';
22
import { APP_DEVELOPMENT_BASENAME } from 'app-shared/constants';
33
import { screen, waitFor, waitForElementToBeRemoved } from '@testing-library/react';
44
import React from 'react';
5-
import { TextEditor } from './TextEditor';
5+
import TextEditor from './TextEditor';
66
import { textMock } from '@studio/testing/mocks/i18nMock';
77
import type { ServicesContextProps } from 'app-shared/contexts/ServicesContext';
88
import userEvent from '@testing-library/user-event';

src/Designer/frontend/app-development/features/uiEditor/UiEditor.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { QueryKey } from 'app-shared/types/QueryKey';
55
import type { AppVersion } from 'app-shared/types/AppVersion';
66
import { app, org } from '@studio/testing/testids';
77
import { textMock } from '@studio/testing/mocks/i18nMock';
8-
import { UiEditor } from './UiEditor';
8+
import UiEditor from './UiEditor';
99
import { APP_DEVELOPMENT_BASENAME } from 'app-shared/constants';
1010
import { renderWithProviders } from '../../test/testUtils';
1111

0 commit comments

Comments
 (0)