babakfp
babakfp
CCConvex Community
Created by babakfp on 3/26/2025 in #support-community
TS issue with query argument when calling query from the client
export const getManhwaPageData = query({
args: { manhwaId: v.id("manhwa") },
export const getManhwaPageData = query({
args: { manhwaId: v.id("manhwa") },
const manhwaPageDataQuery = useQuery(api.manhwa.getManhwaPageData, {
manhwaId,
})
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)
Type 'string' is not assignable to type 'Id<"manhwa">'.
Type 'string' is not assignable to type '{ __tableName: "manhwa"; }'.ts(2322)
4 replies