Skip to content

Commit

Permalink
Merge pull request #2616 from hollaex/2.9.5
Browse files Browse the repository at this point in the history
2.9.5
  • Loading branch information
abeikverdi committed Feb 2, 2024
2 parents 17005f4 + 8255f28 commit d8d0d89
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 8 deletions.
3 changes: 0 additions & 3 deletions server/api/controllers/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,6 @@ const loginPost = (req, res) => {
return toolsLib.security.checkCaptcha(captcha, ip);
})
.catch(async (err) => {
if (!otp_code) {
throw new Error(OTP_CODE_NOT_FOUND);
}
await toolsLib.user.createUserLogin(user, ip, device, domain, origin, referer, null, long_term, false);
const loginData = await toolsLib.user.findUserLatestLogin(user, false);
const message = createAttemptMessage(loginData, user, domain);
Expand Down
2 changes: 1 addition & 1 deletion server/api/swagger/swagger.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const definition = {
swagger: '2.0',
info: {
title: 'HollaEx Kit',
version: '2.9.4'
version: '2.9.5'
},
host: 'api.hollaex.com',
basePath: '/v2',
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.9.4",
"version": "2.9.5",
"private": false,
"description": "HollaEx Kit",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.9.4
2.9.5
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hollaex-kit",
"version": "2.9.4",
"version": "2.9.5",
"private": true,
"dependencies": {
"@ant-design/compatible": "1.0.5",
Expand Down
1 change: 0 additions & 1 deletion web/src/containers/WithdrawConfirmation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ class ConfirmWithdrawal extends Component {

<div style={{ marginTop: 20 }}>
<div>
{this.props?.coins?.[currency]?.fullname}{' '}
<EditWrapper stringId="WITHDRAW_PAGE.WITHDRAW_CONFIRM_SUCCESS_2">
{STRINGS['WITHDRAW_PAGE.WITHDRAWAL_CONFIRM_AMOUNT']}
</EditWrapper>
Expand Down

0 comments on commit d8d0d89

Please sign in to comment.