diff --git a/frontend/src/js/scrollable-list/ScrollableList.tsx b/frontend/src/js/scrollable-list/ScrollableList.tsx index 567058ab88..f8e35c6828 100644 --- a/frontend/src/js/scrollable-list/ScrollableList.tsx +++ b/frontend/src/js/scrollable-list/ScrollableList.tsx @@ -7,7 +7,7 @@ interface PropsType { items: ReactNode[]; maxVisibleItems: number; fullWidth?: boolean; - dataTestId?: string + dataTestId?: string; } // With the number of visible items specified here, @@ -44,7 +44,12 @@ const Item = styled("div")` font-size: ${({ theme }) => theme.font.sm}; `; -const ScrollableList = ({ items, maxVisibleItems, fullWidth, dataTestId }: PropsType) => { +const ScrollableList = ({ + items, + maxVisibleItems, + fullWidth, + dataTestId, +}: PropsType) => { const renderItem = (index: number, key: string | number) => { return ( @@ -54,7 +59,11 @@ const ScrollableList = ({ items, maxVisibleItems, fullWidth, dataTestId }: Props }; return ( - + diff --git a/frontend/src/js/upload-concept-list-modal/UploadConceptListModal.tsx b/frontend/src/js/upload-concept-list-modal/UploadConceptListModal.tsx index 36f78f1b88..9dba7a16c4 100644 --- a/frontend/src/js/upload-concept-list-modal/UploadConceptListModal.tsx +++ b/frontend/src/js/upload-concept-list-modal/UploadConceptListModal.tsx @@ -511,7 +511,11 @@ const UploadConceptListModal = ({ ); return ( - +