[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-09-02 05:24:22 +00:00
committed by GitHub
parent 4c4c72bc9c
commit 990b174110
2 changed files with 7 additions and 2 deletions

View File

@@ -334,7 +334,9 @@ export const AddUserPermissions = ({ userId }: Props) => {
)}
<div className="grid md:grid-cols-2 gap-4">
{projects?.map((item, index) => {
const applications = item.environments.flatMap(env => extractServices(env));
const applications = item.environments.flatMap((env) =>
extractServices(env),
);
return (
<FormField
key={`project-${index}`}

View File

@@ -28,7 +28,10 @@ import { api } from "@/utils/api";
type Project = Awaited<ReturnType<typeof findProjectById>>;
type Environment = Omit<Awaited<ReturnType<typeof findEnvironmentById>>, "project"> ;
type Environment = Omit<
Awaited<ReturnType<typeof findEnvironmentById>>,
"project"
>;
export type Services = {
appName: string;