From 5d0060194bf4eba90344181c064622777298ce1b Mon Sep 17 00:00:00 2001 From: George Lima Date: Fri, 21 Dec 2018 12:43:12 -0300 Subject: [PATCH] hotfix: add keys in map --- app/components/transaction-daily.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/transaction-daily.js b/app/components/transaction-daily.js index c015860..cf100e1 100644 --- a/app/components/transaction-daily.js +++ b/app/components/transaction-daily.js @@ -1,5 +1,5 @@ // @flow -import React from 'react'; +import React, { Fragment } from 'react'; import styled from 'styled-components'; import { TransactionItemComponent, type Transaction } from './transaction-item'; @@ -47,7 +47,7 @@ export const TransactionDailyComponent = ({ {transactions.map(({ date, type, address, amount, }, idx) => ( -
+ )} -
+ ))}