Prettier run

This commit is contained in:
bourquecharles
2021-07-05 08:53:48 -04:00
parent 4c96158f11
commit d9a8a02cd7
24 changed files with 143 additions and 52 deletions

View File

@@ -84,7 +84,12 @@ const DeviceLogs = () => {
}
axiosInstance
.get(`${endpoints.ucentralgw}/api/v1/device/${encodeURIComponent(deviceSerialNumber)}/logs${extraParams}`, options)
.get(
`${endpoints.ucentralgw}/api/v1/device/${encodeURIComponent(
deviceSerialNumber,
)}/logs${extraParams}`,
options,
)
.then((response) => {
setLogs(response.data.values);
})