@depay/widgets 7.15.3 → 7.16.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/esm/index.bundle.js +3 -3
- package/dist/esm/index.js +113 -102
- package/dist/umd/index.bundle.js +3 -3
- package/dist/umd/index.js +113 -102
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1829,9 +1829,9 @@ export default (props)=>{
|
|
|
1829
1829
|
|
|
1830
1830
|
let unmount
|
|
1831
1831
|
|
|
1832
|
-
const openPaymentWidget = ()=>{
|
|
1832
|
+
const openPaymentWidget = async ()=>{
|
|
1833
1833
|
(
|
|
1834
|
-
{ unmount } = DePayWidgets.Payment({...})
|
|
1834
|
+
{ unmount } = await DePayWidgets.Payment({...})
|
|
1835
1835
|
)
|
|
1836
1836
|
}
|
|
1837
1837
|
|