From 4118da30814579ac3246e863583635543174839a Mon Sep 17 00:00:00 2001 From: Barry Gitarts Date: Fri, 30 Nov 2018 11:38:58 -0500 Subject: [PATCH] change funderProfile to funderDescription --- app/components/AddFunder.jsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/components/AddFunder.jsx b/app/components/AddFunder.jsx index 09f7922..06faf06 100644 --- a/app/components/AddFunder.jsx +++ b/app/components/AddFunder.jsx @@ -18,11 +18,11 @@ const addFunderSucessMsg = response => { const AddFunder = () => ( { - const { funderName, funderProfile, commitTime } = values; + const { funderName, funderDescription, commitTime } = values; const account = await web3.eth.getCoinbase(); - const args = [funderName, funderProfile, commitTime, 0]; + const args = [funderName, funderDescription, commitTime, 0]; addGiver(...args) .estimateGas({ from: account }) .then(async gas => { @@ -67,15 +67,15 @@ const AddFunder = () => ( value={values.funderName || ''} /> ( value={values.commitTime || ''} /> {status &&