feat: refactor user authentication and subscription dialogs for improved structure and consistency

This commit is contained in:
Ardeman
2025-03-15 15:24:01 +08:00
parent 6d99a37f20
commit c7195b7428
13 changed files with 404 additions and 389 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { z } from 'zod'
import { type TLoginSchema } from '~/layouts/news/form-login'
import { type TLoginSchema } from '~/layouts/news/dialog-login'
import { HttpServer } from '~/libs/http-server'
export const loginResponseSchema = z.object({
+1 -1
View File
@@ -1,4 +1,4 @@
import type { TRegisterSchema } from '~/layouts/news/form-register'
import type { TRegisterSchema } from '~/layouts/news/dialog-register'
import { HttpServer } from '~/libs/http-server'
import { loginResponseSchema } from './login-user'