Commit 040cc29b authored by isstuev's avatar isstuev

change urls again

parent cd13580e
......@@ -316,7 +316,7 @@ frontend:
- "/api-docs"
- "/csv-export"
- "/verified-contracts"
- "/graphql"
- "/graphiql"
resources:
limits:
......
......@@ -364,7 +364,7 @@ frontend:
- "/api-docs"
- "/csv-export"
- "/verified-contracts"
- "/graphql"
- "/graphiql"
resources:
limits:
......
......@@ -39,7 +39,7 @@ frontend:
- "/api-docs"
- "/csv-export"
- "/verified-contracts"
- "/graphql"
- "/graphiql"
resources:
limits:
......
......@@ -39,7 +39,7 @@ frontend:
- "/api-docs"
- "/csv-export"
- "/verified-contracts"
- "/graphql"
- "/graphiql"
resources:
limits:
......
......@@ -356,7 +356,7 @@ export const RESOURCES = {
// GraphQL
graphql: {
path: '/graphiql',
path: '/graphql',
},
// DEPRECATED
......
......@@ -137,9 +137,9 @@ export default function useNavItems(): ReturnType {
} : null,
{
text: 'GraphQL',
nextRoute: { pathname: '/graphql' as const },
nextRoute: { pathname: '/graphiql' as const },
icon: graphQLIcon,
isActive: pathname === '/graphql',
isActive: pathname === '/graphiql',
isNewUi: true,
},
{
......
......@@ -25,7 +25,7 @@ declare module "nextjs-routes" {
| StaticRoute<"/blocks">
| StaticRoute<"/csv-export">
| StaticRoute<"/graph">
| StaticRoute<"/graphql">
| StaticRoute<"/graphiql">
| StaticRoute<"/">
| StaticRoute<"/login">
| StaticRoute<"/search-results">
......
......@@ -18,7 +18,7 @@ const GraphQL = () => {
const { colorMode } = useColorMode();
// use colorModeState as a key to re-render GraphiQL conponent after color mode change
// colorModeState used as a key to re-render GraphiQL conponent after color mode change
const [ colorModeState, setColorModeState ] = React.useState(colorMode);
React.useEffect(() => {
......
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