fix: yet another lint issue

This commit is contained in:
0xsysr3ll
2025-03-24 19:05:53 +01:00
parent 47bf67fff6
commit 71a802498c

View File

@@ -117,7 +117,13 @@ const RequestList = () => {
currentPageSize,
})
);
}, [currentFilter, currentMediaType, currentSort, currentSortDirection, currentPageSize]);
}, [
currentFilter,
currentMediaType,
currentSort,
currentSortDirection,
currentPageSize,
]);
if (!data && !error) {
return <LoadingSpinner />;
@@ -185,7 +191,8 @@ const RequestList = () => {
<option value="tv">
{intl.formatMessage(globalMessages.tvshows)}
</option>
</select>;
</select>
;
</div>
<div className="mb-2 flex flex-grow sm:mb-0 sm:mr-2 lg:flex-grow-0">
<span className="inline-flex cursor-default items-center rounded-l-md border border-r-0 border-gray-500 bg-gray-800 px-3 text-sm text-gray-100">
@@ -292,7 +299,8 @@ const RequestList = () => {
<span className="text-2xl text-gray-400">
{intl.formatMessage(globalMessages.noresults)}
</span>
{(currentFilter !== Filter.ALL || currentMediaType !== Filter.ALL) && (
{(currentFilter !== Filter.ALL ||
currentMediaType !== Filter.ALL) && (
<div className="mt-4">
<Button
buttonType="primary"