babakfpB
Convex Community10mo ago
3 replies
babakfp

TS issue with query argument when calling query from the client

export const getManhwaPageData = query({
    args: { manhwaId: v.id("manhwa") },


const manhwaPageDataQuery = useQuery(api.manhwa.getManhwaPageData, {
    manhwaId,
})


Type 'string' is not assignable to type 'Id<"manhwa">'.
  Type 'string' is not assignable to type '{ __tableName: "manhwa"; }'.ts(2322)
Was this page helpful?