fix: redirect user on machine unpair

This commit is contained in:
Nikola Ubavic 2021-12-16 14:30:18 +01:00 committed by Taranto
parent e70cb6ac95
commit 15fa09615f

View file

@ -56,6 +56,15 @@ const GET_INFO = gql`
}
`
const GET_MACHINES = gql`
{
machines {
name
deviceId
}
}
`
const getMachineID = path => path.slice(path.lastIndexOf('/') + 1)
const MachineRoute = () => {