Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MGJamJam committed May 7, 2024
1 parent 495f806 commit abb48c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type Props = {
readonly onReorderOrderBy: (direction: REORDER_DIRECTION) => void;
};

const sortOrderOption: SelectableValue<QuerySortOrder>[] = [
const sortOrderOption: Array<SelectableValue<QuerySortOrder>> = [
{ value: 'ASC', description: 'Sort by ascending', icon: 'sort-amount-up' },
{ value: 'DESC', description: 'Sort by descending', icon: 'sort-amount-down' },
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export function OrderByRow(props: Props) {
<VerticalGroup>
{selectedAttributes.map((attribute, index, array) => (
<OrderByInput
key={index}
isAdAnalytics={props.isAdAnalytics}
selectableOrderByAttributes={mapOrderBysToSelectableValue()}
attribute={attribute}
Expand Down

0 comments on commit abb48c0

Please sign in to comment.