select text disabled

This commit is contained in:
2026-03-26 15:26:54 +05:30
parent 2b293a20b7
commit feb6c10417
2 changed files with 6 additions and 1 deletions

View File

@@ -130,7 +130,7 @@ export function AuthProvider({ children }: { children: ReactNode }) {
try {
console.log('[Auth] Fetching user by email:', email)
const existingUser = await getUserByEmail(email, token) as MongoUser
console.log('[Auth] Found existing user:', existingUser.id)
// console.log('[Auth] Found existing user:', existingUser.id)
setUserId(existingUser.id)
setMongoUser(existingUser)
} catch (error) {

View File

@@ -5,6 +5,11 @@
*::before,
*::after {
box-sizing: border-box;
user-select: none;
}
input, textarea {
user-select: text;
}
:root {