Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
usavkov-epam committed Oct 10, 2023
1 parent ae4ab68 commit 7e290cb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/LayerCollection/LayerPOLine.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,12 @@ function LayerPOLine({
const { isLoading: isLinesLimitLoading, linesLimit } = useLinesLimit(!(lineId || poLine));
const [isCreateAnotherChecked, setCreateAnotherChecked] = useState(locationState?.isCreateAnotherChecked);
const { isFetching: isConfigsFetching, integrationConfigs } = useIntegrationConfigs({ organizationId: vendor?.id });
const { instance, isLoading: isInstanceLoading } = useInstance(locationState?.instanceId, { tenantId: locationState?.instanceTenantId });
const { instance, isLoading: isInstanceLoading } = useInstance(
locationState?.instanceId,

Check failure on line 124 in src/components/LayerCollection/LayerPOLine.js

View workflow job for this annotation

GitHub Actions / github-actions-ci

Trailing spaces not allowed

Check failure on line 124 in src/components/LayerCollection/LayerPOLine.js

View workflow job for this annotation

GitHub Actions / github-actions-ci

Trailing spaces not allowed
{
tenantId: locationState?.instanceTenantId

Check failure on line 126 in src/components/LayerCollection/LayerPOLine.js

View workflow job for this annotation

GitHub Actions / github-actions-ci

Missing trailing comma

Check failure on line 126 in src/components/LayerCollection/LayerPOLine.js

View workflow job for this annotation

GitHub Actions / github-actions-ci

Missing trailing comma
},
);
const { mutateTitle } = useTitleMutation();

// eslint-disable-next-line react-hooks/exhaustive-deps
Expand Down

0 comments on commit 7e290cb

Please sign in to comment.