fix timeout value

This commit is contained in:
shamsmosowi
2022-07-06 13:44:34 +02:00
parent 5123b1c1ca
commit 9a168544b4

View File

@@ -94,7 +94,7 @@ export default function ActionFab({
};
const handleCallableAction = async (data: any) => {
const resp: any = await httpsCallable(firebaseFunctions, callableName, {
timeout: 550,
timeout: 550000,
})(data);
return resp.data;
};