ubanyi
ubanyi2d ago

Can't get my functions to fire from React native with Expo and Clerk

I don't have any type errors, I can see my functions on the dashboard, every before the mutation line works but fails can't get past this line, the function call does not work I don't see any errors, please help
const handleDone = handleSubmit(async (data) => {
// Create a new main budget if we haven't already
if (!createdBudgetId) {
const newBudgetId = createMainBudget(data.title, data.description || "");
console.log("Creating budget in backend");
const createBudget = useMutation(api.budgets.createMainBudget);
console.log(typeof createBudget)
await createBudget({
name: data.title,
description: data.description,
amount: "0",
});
const handleDone = handleSubmit(async (data) => {
// Create a new main budget if we haven't already
if (!createdBudgetId) {
const newBudgetId = createMainBudget(data.title, data.description || "");
console.log("Creating budget in backend");
const createBudget = useMutation(api.budgets.createMainBudget);
console.log(typeof createBudget)
await createBudget({
name: data.title,
description: data.description,
amount: "0",
});
1 Reply
Convex Bot
Convex Bot2d ago
Thanks for posting in <#1088161997662724167>. Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets. - Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.) - Use search.convex.dev to search Docs, Stack, and Discord all at once. - Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI. - Avoid tagging staff unless specifically instructed. Thank you!

Did you find this page helpful?