Skip to content

Commit

Permalink
Merge pull request #6 from lucideus-repo/dev
Browse files Browse the repository at this point in the history
Resolved the history bug
  • Loading branch information
lucideus-repo authored Jul 15, 2020
2 parents 34005a3 + 71f8cc3 commit bcb7387
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 3 deletions.
Empty file modified Backend/web/.dockerignore
100644 → 100755
Empty file.
Empty file modified Backend/web/.gitignore
100644 → 100755
Empty file.
Empty file modified Backend/web/Dockerfile
100644 → 100755
Empty file.
Empty file modified Backend/web/nginx/nginx.conf
100644 → 100755
Empty file.
Empty file modified Backend/web/src/app/assets/images/illustrations/hero-images.svg
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const AccountStatementPage = ({ accountStatements, handleAccountStatement, handl
if (localStorage.length === 0 || !userData) {
document.location.href = "/";
}

//@ts-ignore
history.listen((location, action) => {
handleReset();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const AddBeneficiaryPage = ({
if (localStorage.length === 0 || !userData) {
window.location.assign(routes.app.authentication.login);
}

//@ts-ignore
history.listen((location, action) => {
handleResetOTP();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const DeleteBeneficiaryPage = ({
if (localStorage.length === 0 || !userData) {
window.location.assign(routes.app.authentication.login);
}

//@ts-ignore
history.listen((location, action) => {
handleResetOTP();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ const BankTransferPage = ({
if (localStorage.length === 0 || !userData) {
document.location.href = "/";
}
//@ts-ignore
history.listen((location, action) => {
handleResetOTP();
});
Expand Down
Empty file modified Backend/web/src/app/routesApp.tsx
100644 → 100755
Empty file.

0 comments on commit bcb7387

Please sign in to comment.