We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 870e0a8 commit 412fdefCopy full SHA for 412fdef
src/methods/send/send.ts
@@ -26,7 +26,7 @@ export const send = async (
26
): Promise<EmailJSResponseStatus> => {
27
const publicKey = options?.publicKey || store.publicKey;
28
const privateKey = options?.privateKey || store.privateKey;
29
- const storageProvider = store.storageProvider || options?.storageProvider;
+ const storageProvider = options?.storageProvider || store.storageProvider;
30
const blockList = { ...store.blockList, ...options?.blockList };
31
const limitRate = { ...store.limitRate, ...options?.limitRate };
32
0 commit comments