mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-12 08:25:47 +01:00
Linting
This commit is contained in:
@@ -10,5 +10,4 @@ export const useGetServiceByType = (...serviceTypes: ServiceType[]) => {
|
||||
export const getServiceByType = (config: Config, ...serviceTypes: ServiceType[]) =>
|
||||
config.apps.filter((s) => serviceTypes.includes(s.type));
|
||||
|
||||
export const getServiceById = (config: Config, id: string) =>
|
||||
config.apps.find((s) => s.id === id);
|
||||
export const getServiceById = (config: Config, id: string) => config.apps.find((s) => s.id === id);
|
||||
|
||||
Reference in New Issue
Block a user