diff --git a/frontend/src/component/integrations/AddonRedirect/AddonRedirect.tsx b/frontend/src/component/integrations/AddonRedirect/AddonRedirect.tsx index cb8255cda0..acb916333f 100644 --- a/frontend/src/component/integrations/AddonRedirect/AddonRedirect.tsx +++ b/frontend/src/component/integrations/AddonRedirect/AddonRedirect.tsx @@ -12,7 +12,8 @@ export const AddonRedirect = () => { return ( - Addons where renamed to /integrations + Addons where renamed to{' '} + /integrations ); }; diff --git a/frontend/src/component/integrations/IntegrationForm/IntegrationMultiSelector/IntegrationMultiSelector.test.tsx b/frontend/src/component/integrations/IntegrationForm/IntegrationMultiSelector/IntegrationMultiSelector.test.tsx index 41f97418f7..f08ca7fe98 100644 --- a/frontend/src/component/integrations/IntegrationForm/IntegrationMultiSelector/IntegrationMultiSelector.test.tsx +++ b/frontend/src/component/integrations/IntegrationForm/IntegrationMultiSelector/IntegrationMultiSelector.test.tsx @@ -35,7 +35,9 @@ describe('AddonMultiSelector', () => { }); it('renders with default state', () => { - render(); + render( + + ); const checkbox = screen.getByLabelText( /all current and future projects/i @@ -49,7 +51,9 @@ describe('AddonMultiSelector', () => { it('can toggle "ALL" checkbox', async () => { const user = userEvent.setup(); - render(); + render( + + ); await user.click(screen.getByTestId('select-all-projects')); @@ -70,7 +74,10 @@ describe('AddonMultiSelector', () => { it('renders with autocomplete enabled if default value is not a wildcard', () => { render( - + ); const checkbox = screen.getByLabelText( diff --git a/frontend/src/component/integrations/IntegrationForm/IntegrationMultiSelector/IntegrationMultiSelector.tsx b/frontend/src/component/integrations/IntegrationForm/IntegrationMultiSelector/IntegrationMultiSelector.tsx index 8cc9a4cef0..8aa157854d 100644 --- a/frontend/src/component/integrations/IntegrationForm/IntegrationMultiSelector/IntegrationMultiSelector.tsx +++ b/frontend/src/component/integrations/IntegrationForm/IntegrationMultiSelector/IntegrationMultiSelector.tsx @@ -138,9 +138,9 @@ export const IntegrationMultiSelector: VFC = ({ const DefaultHelpText = () => ( - Selecting {entityName}(s) here will filter events so that your integration - will only receive events that are tagged with one of your{' '} - {entityName}s. + Selecting {entityName}(s) here will filter events so that your + integration will only receive events that are tagged with one of + your {entityName}s. ); diff --git a/frontend/src/component/integrations/IntegrationList/AvailableAddons/AvailableAddons.tsx b/frontend/src/component/integrations/IntegrationList/AvailableAddons/AvailableAddons.tsx index 9b2cd472e5..6ff150bd0c 100644 --- a/frontend/src/component/integrations/IntegrationList/AvailableAddons/AvailableAddons.tsx +++ b/frontend/src/component/integrations/IntegrationList/AvailableAddons/AvailableAddons.tsx @@ -139,11 +139,7 @@ export const AvailableAddons = ({ return ( - } + header={} > diff --git a/frontend/src/component/integrations/IntegrationList/AvailableIntegrations/AvailableIntegrations.tsx b/frontend/src/component/integrations/IntegrationList/AvailableIntegrations/AvailableIntegrations.tsx index 984bd2e844..970f5991c4 100644 --- a/frontend/src/component/integrations/IntegrationList/AvailableIntegrations/AvailableIntegrations.tsx +++ b/frontend/src/component/integrations/IntegrationList/AvailableIntegrations/AvailableIntegrations.tsx @@ -1,11 +1,8 @@ -import { PageContent } from "component/common/PageContent/PageContent" -import { VFC } from "react" +import { PageContent } from 'component/common/PageContent/PageContent'; +import { VFC } from 'react'; interface IAvailableIntegrationsProps {} export const AvailableIntegrations: VFC = () => { - - return ( - Available integrations - ) -} + return Available integrations; +}; diff --git a/frontend/src/component/integrations/IntegrationList/ConfiguredAddons/ConfiguredAddons.tsx b/frontend/src/component/integrations/IntegrationList/ConfiguredAddons/ConfiguredAddons.tsx index 249f4aff5a..54198c7b4c 100644 --- a/frontend/src/component/integrations/IntegrationList/ConfiguredAddons/ConfiguredAddons.tsx +++ b/frontend/src/component/integrations/IntegrationList/ConfiguredAddons/ConfiguredAddons.tsx @@ -180,11 +180,7 @@ export const ConfiguredAddons = () => { return ( - } + header={} sx={theme => ({ marginBottom: theme.spacing(2) })} >
diff --git a/frontend/src/component/integrations/IntegrationList/IntegrationNameCell/IntegrationNameCell.tsx b/frontend/src/component/integrations/IntegrationList/IntegrationNameCell/IntegrationNameCell.tsx index 98e9e65063..4d2bb0aeac 100644 --- a/frontend/src/component/integrations/IntegrationList/IntegrationNameCell/IntegrationNameCell.tsx +++ b/frontend/src/component/integrations/IntegrationList/IntegrationNameCell/IntegrationNameCell.tsx @@ -20,7 +20,9 @@ interface IIntegrationNameCellProps { /** * @deprecated Remove when integrationsRework flag is removed */ -export const IntegrationNameCell = ({ provider }: IIntegrationNameCellProps) => ( +export const IntegrationNameCell = ({ + provider, +}: IIntegrationNameCellProps) => (