style: fmt code

This commit is contained in:
ReaJason
2026-04-26 20:39:53 +08:00
parent d9733e1512
commit a8fb030a60
150 changed files with 948 additions and 1522 deletions
+1 -3
View File
@@ -47,9 +47,7 @@ function safeParseYup<T>(schema: yup.ObjectSchema<any>, data: unknown) {
}
const createEnv = () => {
const envVars = Object.entries(import.meta.env).reduce<
Record<string, string>
>((acc, curr) => {
const envVars = Object.entries(import.meta.env).reduce<Record<string, string>>((acc, curr) => {
const [key, value] = curr;
if (typeof value === "string") {
if (key.startsWith("VITE_APP_")) {