diff --git a/hooks/useBluetoothHRM.ts b/hooks/useBluetoothHRM.ts index b54f24ea0b..df1671a125 100644 --- a/hooks/useBluetoothHRM.ts +++ b/hooks/useBluetoothHRM.ts @@ -220,7 +220,7 @@ const useBluetoothHRM = (props: UseBluetoothHRMProps = {}) => { const timeSinceLastData = Date.now() - lastDataTime.current if (timeSinceLastData > dataLivenessTimeoutMs) { - // Fix Race Condition: Don't force a disconnect/reconnect if we are already in a connection state transition + // Don't force a disconnect/reconnect during connection state transition if (connectionLock.current) { logger.warn( { timeSinceLastData },