♻️ Move apps on top of search

This commit is contained in:
Meier Lukas
2023-08-01 12:04:37 +02:00
parent 2c5ef6a73b
commit 00260f975a
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ import { useScreenLargerThan } from '~/hooks/useScreenLargerThan';
import { Logo } from '../Logo';
import { AvatarMenu } from './AvatarMenu';
import { Search } from './search';
import { Search } from './Search';
type MainHeaderProps = {
logoHref?: string;

View File

@@ -37,7 +37,7 @@ export const Search = ({ isMobile }: SearchProps) => {
(engine) =>
engine.sort !== 'movie' || config?.apps.some((app) => app.integration.type === engine.value)
);
const data = [...engines, ...apps];
const data = [...apps, ...engines];
return (
<>