Skip to content

Commit 412fdef

Browse files
committed
fix storageProvider options
1 parent 870e0a8 commit 412fdef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/methods/send/send.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const send = async (
2626
): Promise<EmailJSResponseStatus> => {
2727
const publicKey = options?.publicKey || store.publicKey;
2828
const privateKey = options?.privateKey || store.privateKey;
29-
const storageProvider = store.storageProvider || options?.storageProvider;
29+
const storageProvider = options?.storageProvider || store.storageProvider;
3030
const blockList = { ...store.blockList, ...options?.blockList };
3131
const limitRate = { ...store.limitRate, ...options?.limitRate };
3232

0 commit comments

Comments
 (0)