1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix invalid class names

This commit is contained in:
viown 2025-03-14 13:11:59 +03:00
parent f7e09708fc
commit 69df532c27

View file

@ -62,7 +62,7 @@ const SearchResults: FC<SearchResultsProps> = ({
};
return (
<div className={'searchResults, padded-top, padded-bottom-page'}>
<div className={'searchResults padded-top padded-bottom-page'}>
{data.map((section, index) => renderSection(section, index))}
</div>
);