From 152d7bc774078f022c62aa0d3d94f09cde4eee75 Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Thu, 2 Apr 2020 04:08:34 +0800 Subject: [PATCH] Check for /transactions route --- explorer/src/providers/transactions.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/explorer/src/providers/transactions.tsx b/explorer/src/providers/transactions.tsx index e1135d7470..3ca5f24e7b 100644 --- a/explorer/src/providers/transactions.tsx +++ b/explorer/src/providers/transactions.tsx @@ -136,7 +136,8 @@ function urlSignatures(): Array { .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 {