mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-28 16:06:41 +01:00
extend callable timeout to over 9minutes
This commit is contained in:
@@ -93,10 +93,9 @@ export default function ActionFab({
|
||||
return resp;
|
||||
};
|
||||
const handleCallableAction = async (data: any) => {
|
||||
const resp: any = await httpsCallable(
|
||||
firebaseFunctions,
|
||||
callableName
|
||||
)(data);
|
||||
const resp: any = await httpsCallable(firebaseFunctions, callableName, {
|
||||
timeout: 550,
|
||||
})(data);
|
||||
return resp.data;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user