From f312fd61aece61a057e86a8c7dbced2ce657cdf6 Mon Sep 17 00:00:00 2001 From: Akash Gupta Date: Mon, 9 Aug 2021 09:10:24 +0530 Subject: [PATCH] chore: fix lint errors --- .../entity-editor/series-section/series-section-merge.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/entity-editor/series-section/series-section-merge.tsx b/src/client/entity-editor/series-section/series-section-merge.tsx index 14eb03980a..99576058b8 100644 --- a/src/client/entity-editor/series-section/series-section-merge.tsx +++ b/src/client/entity-editor/series-section/series-section-merge.tsx @@ -50,7 +50,7 @@ type Props = StateProps & DispatchProps & OwnProps; * @param {Object} props - The properties passed to the component. * @param {number} props.orderTypeValue - The order type currently selected for * the series. - * @param {string} props.seriesTypeValue - The entity type currently selected for + * @param {string} props.seriesTypeValue - The entity type currently selected for * the series. * @param {Array} props.mergingEntities - The list of entities being merged * @param {Function} props.onOrderTypeChange - A function to be called when @@ -85,8 +85,8 @@ function SeriesSectionMerge({ } relationships.push(...entity.relationships); }); - - // Filter out series items from relationships + + // Filter out series items from relationships const seriesItems = relationships.filter((relationship) => relationship.typeId > 69 && relationship.typeId < 75); const formattedSeriesItems = seriesItems.map((item) => ( {...item.source, displayNumber: true,