From 316dfa6b2e820af9cb6ef777c804844f24e9b064 Mon Sep 17 00:00:00 2001 From: vicke4 Date: Thu, 13 Feb 2025 22:27:39 +0530 Subject: [PATCH] style: consistent formatting of code --- .../dashboard/settings/notifications/handle-notifications.tsx | 2 +- apps/dokploy/pages/dashboard/project/[projectId].tsx | 4 ++-- packages/server/src/db/schema/notification.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/dokploy/components/dashboard/settings/notifications/handle-notifications.tsx b/apps/dokploy/components/dashboard/settings/notifications/handle-notifications.tsx index 37cd8643..38cc6dc0 100644 --- a/apps/dokploy/components/dashboard/settings/notifications/handle-notifications.tsx +++ b/apps/dokploy/components/dashboard/settings/notifications/handle-notifications.tsx @@ -582,7 +582,7 @@ export const HandleNotifications = ({ notificationId }: Props) => { )} - /> + /> )} diff --git a/apps/dokploy/pages/dashboard/project/[projectId].tsx b/apps/dokploy/pages/dashboard/project/[projectId].tsx index 26317ca9..ea23ad3a 100644 --- a/apps/dokploy/pages/dashboard/project/[projectId].tsx +++ b/apps/dokploy/pages/dashboard/project/[projectId].tsx @@ -70,9 +70,9 @@ import type { } from "next"; import Head from "next/head"; import { useRouter } from "next/router"; -import { useMemo, useState, type ReactElement } from "react"; -import superjson from "superjson"; +import { type ReactElement, useMemo, useState } from "react"; import { toast } from "sonner"; +import superjson from "superjson"; export type Services = { appName: string; diff --git a/packages/server/src/db/schema/notification.ts b/packages/server/src/db/schema/notification.ts index 8ec1bfd8..3e33bfd8 100644 --- a/packages/server/src/db/schema/notification.ts +++ b/packages/server/src/db/schema/notification.ts @@ -170,7 +170,7 @@ export const apiCreateTelegram = notificationsSchema .extend({ botToken: z.string().min(1), chatId: z.string().min(1), - messageThreadId: z.string() + messageThreadId: z.string(), }) .required();