chore: extra space

Co-authored-by: chaotixkilla <chaotixkilla@users.noreply.github.com>
This commit is contained in:
Nikola Ubavić 2021-11-29 14:33:25 +01:00 committed by GitHub
parent 30195e0ea6
commit f7d0dd3af4

View file

@ -35,7 +35,7 @@ function unpair (deviceId) {
const q2 = t.none(`DELETE FROM machine_pings WHERE device_id=$1`, [deviceId]) const q2 = t.none(`DELETE FROM machine_pings WHERE device_id=$1`, [deviceId])
const q3 = t.none(`DELETE FROM machine_network_heartbeat WHERE device_id=$1`, [deviceId]) const q3 = t.none(`DELETE FROM machine_network_heartbeat WHERE device_id=$1`, [deviceId])
const q4 = t.none(`DELETE FROM machine_network_performance WHERE device_id=$1`, [deviceId]) const q4 = t.none(`DELETE FROM machine_network_performance WHERE device_id=$1`, [deviceId])
return t.batch([q1, q2, q3, q4]) return t.batch([q1, q2, q3, q4])
}) })
) )
} }