Commit e004bf28 authored by isstuev's avatar isstuev

fixes

parent 07d432cd
...@@ -473,6 +473,7 @@ frontend: ...@@ -473,6 +473,7 @@ frontend:
# - "/address" # - "/address"
- "/stats" - "/stats"
- "/search-results" - "/search-results"
- "/tokens"
resources: resources:
limits: limits:
memory: memory:
......
...@@ -322,6 +322,7 @@ frontend: ...@@ -322,6 +322,7 @@ frontend:
- "/stats" - "/stats"
- "/search-results" - "/search-results"
- "/token" - "/token"
- "/tokens"
resources: resources:
limits: limits:
......
...@@ -5,7 +5,7 @@ import React from 'react'; ...@@ -5,7 +5,7 @@ import React from 'react';
import getNetworkTitle from 'lib/networks/getNetworkTitle'; import getNetworkTitle from 'lib/networks/getNetworkTitle';
import Tokens from 'ui/pages/Tokens'; import Tokens from 'ui/pages/Tokens';
const BlockPage: NextPage = () => { const TokensPage: NextPage = () => {
const title = getNetworkTitle(); const title = getNetworkTitle();
return ( return (
<> <>
...@@ -17,6 +17,6 @@ const BlockPage: NextPage = () => { ...@@ -17,6 +17,6 @@ const BlockPage: NextPage = () => {
); );
}; };
export default BlockPage; export default TokensPage;
export { getServerSideProps } from 'lib/next/getServerSideProps'; export { getServerSideProps } from 'lib/next/getServerSideProps';
...@@ -4,7 +4,7 @@ import Page from 'ui/shared/Page/Page'; ...@@ -4,7 +4,7 @@ import Page from 'ui/shared/Page/Page';
import PageTitle from 'ui/shared/Page/PageTitle'; import PageTitle from 'ui/shared/Page/PageTitle';
import TokensList from 'ui/tokens/Tokens'; import TokensList from 'ui/tokens/Tokens';
const Transactions = () => { const Tokens = () => {
return ( return (
<Page> <Page>
<PageTitle text="Tokens" withTextAd/> <PageTitle text="Tokens" withTextAd/>
...@@ -13,4 +13,4 @@ const Transactions = () => { ...@@ -13,4 +13,4 @@ const Transactions = () => {
); );
}; };
export default Transactions; export default Tokens;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment