From df648eccf6e743e268c09b40b514a8d5b3afb9dc Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 17:11:01 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages/server/src/services/compose.ts | 4 +++- packages/server/src/services/mariadb.ts | 4 +++- packages/server/src/services/postgres.ts | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/server/src/services/compose.ts b/packages/server/src/services/compose.ts index 23572afe8..71876a3ee 100644 --- a/packages/server/src/services/compose.ts +++ b/packages/server/src/services/compose.ts @@ -46,7 +46,9 @@ import { validUniqueServerAppName } from "./project"; export type Compose = typeof compose.$inferSelect; -export const createCompose = async (input: z.infer) => { +export const createCompose = async ( + input: z.infer, +) => { const appName = buildAppName("compose", input.appName); const valid = await validUniqueServerAppName(appName); diff --git a/packages/server/src/services/mariadb.ts b/packages/server/src/services/mariadb.ts index 46c9b31a2..40f9add9b 100644 --- a/packages/server/src/services/mariadb.ts +++ b/packages/server/src/services/mariadb.ts @@ -16,7 +16,9 @@ import { validUniqueServerAppName } from "./project"; export type Mariadb = typeof mariadb.$inferSelect; -export const createMariadb = async (input: z.infer) => { +export const createMariadb = async ( + input: z.infer, +) => { const appName = buildAppName("mariadb", input.appName); const valid = await validUniqueServerAppName(appName); diff --git a/packages/server/src/services/postgres.ts b/packages/server/src/services/postgres.ts index c5c48f1a5..0900524d8 100644 --- a/packages/server/src/services/postgres.ts +++ b/packages/server/src/services/postgres.ts @@ -29,7 +29,9 @@ export function getMountPath(dockerImage: string): string { export type Postgres = typeof postgres.$inferSelect; -export const createPostgres = async (input: z.infer) => { +export const createPostgres = async ( + input: z.infer, +) => { const appName = buildAppName("postgres", input.appName); const valid = await validUniqueServerAppName(appName);