correct function name

This commit is contained in:
Gabe Yuan
2023-10-12 17:00:18 +08:00
parent b13a63e568
commit 7173692db7
3 changed files with 5 additions and 5 deletions

View File

@@ -6,6 +6,6 @@ export const sendIframeMsg = (action, args) => {
});
};
export const sendPrentMsg = (action, args) => {
export const sendParentMsg = (action, args) => {
window.parent.postMessage({ action, args }, "*");
};