l
l
Explore posts from servers
TTCTheo's Typesafe Cult
Created by l on 5/22/2023 in #questions
aws node migrate message
"Please migrate your code to use AWS SDK for JavaScript (v3)" any idea what to do? I know it is stupid question but I Guess this message is worst
2 replies
TTCTheo's Typesafe Cult
Created by l on 4/28/2023 in #questions
InfiniteQuery or Pagination
how to implement it with the Drizzle orm, is there some example, how to use cursor?
3 replies
TTCTheo's Typesafe Cult
Created by l on 4/23/2023 in #questions
react-hook-form, how to set values, which dosent come from input
silly question, when i put postId as input value it works, i tried to make object too but dosent work. those 2 options dosent work, only option that work for me when i put input value postIdQuery, is there better way?
const onSubmit =
(values: CreateParentCommentInput) => {
const payload = {
...values,
postId: postIdQuery
}
mutate(payload);
}
//////////
const postIdQuery = String(router.query.blogId)
const onSubmit =
(values: CreateParentCommentInput) => {
mutate({
id: values.id,
body: values.body,
postId: postIdQuery
});
}
const onSubmit =
(values: CreateParentCommentInput) => {
const payload = {
...values,
postId: postIdQuery
}
mutate(payload);
}
//////////
const postIdQuery = String(router.query.blogId)
const onSubmit =
(values: CreateParentCommentInput) => {
mutate({
id: values.id,
body: values.body,
postId: postIdQuery
});
}
4 replies
TTCTheo's Typesafe Cult
Created by l on 4/13/2023 in #questions
S3 with TRPC
can somebody give me repo or tutorial how to use s3 with trpc ? (never used aws before)
15 replies
TTCTheo's Typesafe Cult
Created by l on 4/3/2023 in #questions
clerk design
can I design my own clerk signup/sign in page? or We can only use clerk template ?
4 replies
TTCTheo's Typesafe Cult
Created by l on 3/30/2023 in #questions
How to post drizzle.config.json to the vercel, (it should not be on the github)
deranged
4 replies