@iankibetsh/shframework 4.0.6 → 4.0.7
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/dist/library.js +1 -4
- package/dist/library.mjs +1 -4
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -221,10 +221,7 @@ async function runPlainRequest(url, message, title, data){
|
|
|
221
221
|
}
|
|
222
222
|
})
|
|
223
223
|
.catch(error => {
|
|
224
|
-
|
|
225
|
-
success: false,
|
|
226
|
-
error: error
|
|
227
|
-
}
|
|
224
|
+
throw new Error(error)
|
|
228
225
|
})
|
|
229
226
|
},
|
|
230
227
|
allowOutsideClick: () => !Swal__default["default"].isLoading()
|
package/dist/library.mjs
CHANGED