Check for /transactions route

This commit is contained in:
Justin Starry 2020-04-02 04:08:34 +08:00 committed by Michael Vines
parent b3e0f06e23
commit 152d7bc774
1 changed files with 2 additions and 1 deletions

View File

@ -136,7 +136,8 @@ function urlSignatures(): Array<string> {
.concat(findGetParameter("transactions")?.split(",") || [])
.concat(findPathSegment("tx")?.split(",") || [])
.concat(findPathSegment("txn")?.split(",") || [])
.concat(findPathSegment("transaction")?.split(",") || []);
.concat(findPathSegment("transaction")?.split(",") || [])
.concat(findPathSegment("transactions")?.split(",") || []);
}
function initState(): State {