Skip to content

Commit

Permalink
Allow pairing even if previous devices were paired
Browse files Browse the repository at this point in the history
  • Loading branch information
wscullen committed Mar 25, 2024
1 parent de0a07e commit e20932e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BluetoothControlPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const BluetoothControlPanel = ({
<div className="flex flex-col gap-y-2">
{supportsBluetooth ? (
<div className="flex flex-col gap-y-2">
{isDisconnected && previouslyPairedDevices.length === 0 && (
{isDisconnected && (
<button
className="p-2 border rounded border-solid border-gray-700"
onClick={connectToNewDeviceAndSubscribeToUpdates}
Expand Down

0 comments on commit e20932e

Please sign in to comment.