@@ -505,7 +505,7 @@ export function usePublic() {
if (newNum > 0 && newNum <= 1000) {
return 1
}
- return (newNum / 1000).toFixed()
+ return Math.round(newNum / 1000)
return {
optionLeft,
@@ -130,7 +130,7 @@ const getAirportCount = async () => {
if (weight <= 1000) {
airportCount.weight = 1
} else {
- airportCount.weight = parseInt((weight / 1000).toFixed())
+ airportCount.weight = Math.round(weight / 1000)
airportCount.weight = 0