Address comments

This commit is contained in:
ajnart
2023-01-06 12:23:54 +09:00
parent 94e36f3e0f
commit cb9ee81aa2
4 changed files with 3 additions and 6 deletions

View File

@@ -55,9 +55,6 @@ export function Search() {
const [searchQuery, setSearchQuery] = useState('');
const [debounced, cancel] = useDebouncedValue(searchQuery, 250);
// TODO: ask manuel-rw about overseerr
// Answer: We can simply check if there is a app of the type overseer and display results if there is one.
// Overseerr is not use anywhere else, so it makes no sense to add a standalone toggle for displaying results
const isOverseerrEnabled = config?.apps.some(
(x) => x.integration.type === 'overseerr' || x.integration.type === 'jellyseerr'
);

View File

@@ -8,7 +8,6 @@ interface smallAppItem {
export default function SmallAppItem(props: any) {
const { app }: { app: smallAppItem } = props;
// TODO : Use Next/link
return (
<Group>
{app.icon && <Avatar src={app.icon} />}