rboud
rboud
TTCTheo's Typesafe Cult
Created by şiar_619 on 1/8/2025 in #questions
Credentials login error
14 replies
TTCTheo's Typesafe Cult
Created by şiar_619 on 1/9/2025 in #questions
module not found error
I don't know much about NextAuth but you should probably have a client loginStatus that uses something like useSession() Or make /login and navbar server components and extract the client parts in a component
24 replies
TTCTheo's Typesafe Cult
Created by şiar_619 on 1/9/2025 in #questions
module not found error
I've followed the error on your code, your are wrapping a server component/operation in a client component : page login (client) uses component navbar (client) uses component loginStatus (server) uses auth variable (in /server/auth/index) uses NextAuth
24 replies
TTCTheo's Typesafe Cult
Created by Nat on 1/1/2025 in #questions
Enable mouse scroll or mouse drag in number input?
Scrolling or mouse drag can be source of accidental triggering, since scrolling is used for scrolling the page. Isn't it better to use a slider ?
11 replies
TTCTheo's Typesafe Cult
Created by Anish on 12/30/2024 in #questions
Proxy for ssh protocol
I was thinking of adding somethink like :
Match User username1
ForceCommand /bin/bash -c "docker exec -it container bash"
Match User username1
ForceCommand /bin/bash -c "docker exec -it container bash"
but yeah that would work too !
24 replies
TTCTheo's Typesafe Cult
Created by Anish on 12/30/2024 in #questions
Proxy for ssh protocol
You can use the Match directive on your sshd_config on your host. You do not even need to set up an ssh server on the containers since you can force exec the shell command. Or something more customizable you can use HAProxy
24 replies