diff --git a/ui/src/views/devices/ListDevices.tsx b/ui/src/views/devices/ListDevices.tsx index d2ebb5c5..09aafe51 100644 --- a/ui/src/views/devices/ListDevices.tsx +++ b/ui/src/views/devices/ListDevices.tsx @@ -87,8 +87,9 @@ function ListDevices(props: IProps) { width: 250, render: (text, record) => ( {text} @@ -179,7 +180,7 @@ function ListDevices(props: IProps) { req.setMulticastGroupId(mgSelected); req.setDevEui(devEui); - MulticastGroupStore.addDevice(req, () => { }); + MulticastGroupStore.addDevice(req, () => {}); } setMgModalVisible(false); @@ -191,7 +192,7 @@ function ListDevices(props: IProps) { req.setRelayDevEui(relaySelected); req.setDeviceDevEui(devEui); - RelayStore.addDevice(req, () => { }); + RelayStore.addDevice(req, () => {}); } setRelayModalVisible(false); diff --git a/ui/src/views/gateways/ListGateways.tsx b/ui/src/views/gateways/ListGateways.tsx index 67e13529..cf37850c 100644 --- a/ui/src/views/gateways/ListGateways.tsx +++ b/ui/src/views/gateways/ListGateways.tsx @@ -179,7 +179,7 @@ function ListGateways(props: IProps) { req.setMulticastGroupId(mgSelected); req.setGatewayId(gatewayId); - MulticastGroupStore.addGateway(req, () => { }); + MulticastGroupStore.addGateway(req, () => {}); } setMgModalVisible(false);