From 9563e8c99b80cef0f685d18d26caaf8f34369b18 Mon Sep 17 00:00:00 2001 From: David Leuliette Date: Wed, 15 May 2024 06:57:05 +0200 Subject: [PATCH] fix: typo on `example/BleDevice` component (#1183) --- example/src/components/molecules/BleDevice/BleDevice.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/src/components/molecules/BleDevice/BleDevice.tsx b/example/src/components/molecules/BleDevice/BleDevice.tsx index d3250b0c..a1084771 100644 --- a/example/src/components/molecules/BleDevice/BleDevice.tsx +++ b/example/src/components/molecules/BleDevice/BleDevice.tsx @@ -10,7 +10,7 @@ export type BleDeviceProps = { export function BleDevice({ device, onPress }: BleDeviceProps) { const isConnectableInfoValueIsUnavailable = typeof device.isConnectable !== 'boolean' - const isConnectableValue = device.isConnectable ? 'ture' : 'false' + const isConnectableValue = device.isConnectable ? 'true' : 'false' const parsedIsConnectable = isConnectableInfoValueIsUnavailable ? '-' : isConnectableValue return (