style: consistent formatting of code

This commit is contained in:
vicke4
2025-02-13 22:27:39 +05:30
parent e228325e37
commit 316dfa6b2e
3 changed files with 4 additions and 4 deletions

View File

@@ -582,7 +582,7 @@ export const HandleNotifications = ({ notificationId }: Props) => {
<FormMessage />
</FormItem>
)}
/>
/>
</>
)}

View File

@@ -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;

View File

@@ -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();