From e926060712594dcb5134b2493844c0f1564974c1 Mon Sep 17 00:00:00 2001 From: Barry Gitarts Date: Thu, 25 Oct 2018 15:56:12 +0200 Subject: [PATCH] display pubKey when supplied --- app/components/ens/DisplayBox.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/components/ens/DisplayBox.js b/app/components/ens/DisplayBox.js index fb5f4c3..47c2cff 100644 --- a/app/components/ens/DisplayBox.js +++ b/app/components/ens/DisplayBox.js @@ -28,7 +28,7 @@ const BlueBox = styled.div` color: #4360df; `; -const DisplayBox = ({displayType, text, onClick, showBlueBox}) => ( +const DisplayBox = ({ displayType, pubKey, onClick, showBlueBox }) => (
{displayType} @@ -42,7 +42,7 @@ const DisplayBox = ({displayType, text, onClick, showBlueBox}) => ( : - {text} + {pubKey} }