Fixed int error

This commit is contained in:
Patrick Alvin Alcala 2026-02-20 16:32:55 +08:00
parent 1e2b875104
commit f99a6aa8ac

View file

@ -253,7 +253,7 @@ export default () => {
const response = await getApi('check-popsrecord', application)
const result = response.result
return result > 0
return parseInt(result) > 0
}
// const calculateAmounts = () => {