select text disabled
This commit is contained in:
@@ -130,7 +130,7 @@ export function AuthProvider({ children }: { children: ReactNode }) {
|
|||||||
try {
|
try {
|
||||||
console.log('[Auth] Fetching user by email:', email)
|
console.log('[Auth] Fetching user by email:', email)
|
||||||
const existingUser = await getUserByEmail(email, token) as MongoUser
|
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)
|
setUserId(existingUser.id)
|
||||||
setMongoUser(existingUser)
|
setMongoUser(existingUser)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|||||||
@@ -5,6 +5,11 @@
|
|||||||
*::before,
|
*::before,
|
||||||
*::after {
|
*::after {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input, textarea {
|
||||||
|
user-select: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
|
|||||||
Reference in New Issue
Block a user