mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-14 17:26:26 +01:00
♻️ Move apps on top of search
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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 (
|
||||
<>
|
||||
|
||||
Reference in New Issue
Block a user