fix response data

This commit is contained in:
jejolare 2024-03-20 18:04:35 +07:00
parent bb93eb57e1
commit a9fd098a8f

View file

@ -1436,10 +1436,7 @@ app.get('/api/price', exceptionHandler(async (req, res) => {
break;
}
return res.json({
success: true,
data: responseData
});
return res.json(responseData);
}));