diff --git a/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceRow.tsx b/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceRow.tsx index 70ab8af5d..0bf427543 100644 --- a/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceRow.tsx +++ b/src/lib/seam/components/SupportedDeviceTable/SupportedDeviceRow.tsx @@ -39,6 +39,10 @@ export function ModelColumn({ deviceModel, }: SupportedDeviceRowProps): JSX.Element { const sku = deviceModel.aesthetic_variants[0]?.manufacturer_sku + const connection = + deviceModel.main_connection_type === 'unknown' + ? null + : deviceModel.main_connection_type return (
@@ -47,8 +51,8 @@ export function ModelColumn({
{sku} - {sku != null && } - {deviceModel.main_connection_type} + {sku != null && connection != null && } + {connection}