diff --git a/src/components/search/SearchResultsRow.tsx b/src/components/search/SearchResultsRow.tsx index bdbce785ae..10bdd1d9a1 100644 --- a/src/components/search/SearchResultsRow.tsx +++ b/src/components/search/SearchResultsRow.tsx @@ -1,3 +1,4 @@ +import { BaseItemDto } from '@thornbill/jellyfin-sdk/dist/generated-client'; import React, { FunctionComponent, useEffect, useRef } from 'react'; import cardBuilder from '../cardbuilder/cardBuilder'; @@ -17,7 +18,7 @@ const createScroller = ({ title = '' }) => ({ type SearchResultsRowProps = { title?: string; - items?: Array; // TODO: Should be Array once we have a typed API client + items?: BaseItemDto[]; cardOptions?: Record; }