fix naming for post method

This commit is contained in:
DwCay
2022-06-30 13:35:07 +03:00
parent bac246eac2
commit e175ca0295
2 changed files with 4 additions and 4 deletions

View File

@@ -9,12 +9,12 @@ const Onboarding4 = observer(()=>{
const [checkBoxesSelected, setCheckBoxesSelected] = useState(false) const [checkBoxesSelected, setCheckBoxesSelected] = useState(false)
function postAuthData () { function createAccount () {
let checkBoxes=[...document.getElementsByClassName("form-checkbox")] let checkBoxes=[...document.getElementsByClassName("form-checkbox")]
if(checkBoxes.find(item=>item.checked===false)) { if(checkBoxes.find(item=>item.checked===false)) {
return return
} else { } else {
registrationStore.postAuth() registrationStore.fetchCreateNewAccount()
setCheckBoxesSelected(true) setCheckBoxesSelected(true)
} }
@@ -82,7 +82,7 @@ const Onboarding4 = observer(()=>{
<path className="text-emerald-500" d="m28.5 41-8-8 3-3 5 5 12-12 3 3z" /> <path className="text-emerald-500" d="m28.5 41-8-8 3-3 5 5 12-12 3 3z" />
</svg> </svg>
<h1 className="text-3xl text-slate-800 font-bold mb-8">{registrationStore.accountData.first_name ? `Nice to meet you, ${registrationStore.accountData.first_name} 🙌` : 'Please, go back step 2'}</h1> <h1 className="text-3xl text-slate-800 font-bold mb-8">{registrationStore.accountData.first_name ? `Nice to meet you, ${registrationStore.accountData.first_name} 🙌` : 'Please, go back step 2'}</h1>
<button onClick={()=>postAuthData()} className="btn px-6 bg-indigo-500 hover:bg-indigo-600 text-white"> <button onClick={()=>createAccount()} className="btn px-6 bg-indigo-500 hover:bg-indigo-600 text-white">
<Link id="link-dashboard" to={checkBoxesSelected && "/dashboard"}>Go To Profile -&gt;</Link> <Link id="link-dashboard" to={checkBoxesSelected && "/dashboard"}>Go To Profile -&gt;</Link>
</button> </button>
</div> </div>

View File

@@ -21,7 +21,7 @@ class Store {
})) }))
}; };
postAuth() { fetchCreateNewAccount() {
fetchWrapper.postAuth('http://3.125.47.101/api/data/account', { fetchWrapper.postAuth('http://3.125.47.101/api/data/account', {
networkIdentifier: this.nodeInfo.networkIdentifier, networkIdentifier: this.nodeInfo.networkIdentifier,
lastBlockID: this.nodeInfo.lastBlockID lastBlockID: this.nodeInfo.lastBlockID