Commit e004bf28 authored by isstuev's avatar isstuev

fixes

parent 07d432cd
......@@ -473,6 +473,7 @@ frontend:
# - "/address"
- "/stats"
- "/search-results"
- "/tokens"
resources:
limits:
memory:
......
......@@ -322,6 +322,7 @@ frontend:
- "/stats"
- "/search-results"
- "/token"
- "/tokens"
resources:
limits:
......
......@@ -5,7 +5,7 @@ import React from 'react';
import getNetworkTitle from 'lib/networks/getNetworkTitle';
import Tokens from 'ui/pages/Tokens';
const BlockPage: NextPage = () => {
const TokensPage: NextPage = () => {
const title = getNetworkTitle();
return (
<>
......@@ -17,6 +17,6 @@ const BlockPage: NextPage = () => {
);
};
export default BlockPage;
export default TokensPage;
export { getServerSideProps } from 'lib/next/getServerSideProps';
......@@ -4,7 +4,7 @@ import Page from 'ui/shared/Page/Page';
import PageTitle from 'ui/shared/Page/PageTitle';
import TokensList from 'ui/tokens/Tokens';
const Transactions = () => {
const Tokens = () => {
return (
<Page>
<PageTitle text="Tokens" withTextAd/>
......@@ -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