Removed delete db row temp code

This commit is contained in:
2023-09-11 21:50:37 -04:00
parent e4d68dc772
commit f7aaa1dc81
2 changed files with 0 additions and 9 deletions

View File

@@ -66,13 +66,6 @@ function MapTiles() {
}
});
});
const temp: string[] = [];
_airports.forEach((airport) => {
if (!airport.metar) {
temp.push(airport.icao);
}
});
console.log(`delete from airports where icao = ANY('{${temp}}'::text[]);`);
setAirports(_airports);
}