Fixed int error
This commit is contained in:
parent
1e2b875104
commit
f99a6aa8ac
1 changed files with 1 additions and 1 deletions
|
|
@ -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 = () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue