Remove unncessary async keyword

This commit is contained in:
Kijin Sung 2025-06-13 16:44:58 +09:00
parent 2bac2744a5
commit 5cb4a00113

View file

@ -402,7 +402,7 @@ Rhymix.modal.close = function(id) {
* @param function error
* @return void
*/
Rhymix.ajax = async function(action, params, success, error) {
Rhymix.ajax = function(action, params, success, error) {
// Extract module and act
let isFormData = params instanceof FormData;