From fca32424b4cb4061e0a784a0aadf9358c59cd022 Mon Sep 17 00:00:00 2001 From: Gala Date: Mon, 24 Oct 2022 12:01:37 +0200 Subject: [PATCH] fix build --- explorer/src/components/Gateways.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/explorer/src/components/Gateways.ts b/explorer/src/components/Gateways.ts index 591b9e3d48..e75c9aeb05 100644 --- a/explorer/src/components/Gateways.ts +++ b/explorer/src/components/Gateways.ts @@ -20,13 +20,13 @@ export function gatewayToGridRow(arrayOfGateways: GatewayResponse): GatewayRowTy return !arrayOfGateways ? [] : arrayOfGateways.map((gw) => ({ - id: gw.owner, - owner: gw.owner, - identityKey: gw.gateway.identity_key || '', - location: gw?.gateway?.location || '', - bond: gw.pledge_amount.amount || 0, - host: gw.gateway.host || '', - })); + id: gw.owner, + owner: gw.owner, + identityKey: gw.gateway.identity_key || '', + location: gw?.gateway?.location || '', + bond: gw.pledge_amount.amount || 0, + host: gw.gateway.host || '', + })); } export function gatewayEnrichedToGridRow(