ubanyi
ubanyi
CCConvex Community
Created by ubanyi on 4/2/2025 in #support-community
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",
});
2 replies
CCConvex Community
Created by ubanyi on 3/20/2025 in #support-community
Financial infrastructure provider requires IP whitelisting for API requests
Hi, I'm working on a fintech application using convex as the backend, I need to integrate with a major 3rd party provider, they require IP whitelisting to enable calls to their API. How can I get the IP of my deployment to integrate with their platform, I don't mind if this is part of the paid feature
3 replies