From 35e25d9a8f83a2850a231b81f4b9e449b1a20f0f Mon Sep 17 00:00:00 2001 From: "m.ray" <16125548+MadalinaRaicu@users.noreply.github.com> Date: Wed, 16 Aug 2023 19:06:56 +0300 Subject: [PATCH] chore(trading): metadata console updates (#4549) --- apps/explorer/src/index.html | 2 +- apps/governance/src/index.html | 2 +- apps/trading/pages/_document.page.tsx | 35 ++++++++++++++++++++++++++- apps/trading/pages/index.page.tsx | 28 +-------------------- 4 files changed, 37 insertions(+), 30 deletions(-) diff --git a/apps/explorer/src/index.html b/apps/explorer/src/index.html index c2aff835f..06acfc6e2 100644 --- a/apps/explorer/src/index.html +++ b/apps/explorer/src/index.html @@ -17,7 +17,7 @@ - + diff --git a/apps/governance/src/index.html b/apps/governance/src/index.html index 5f8f5c040..f74684e7b 100644 --- a/apps/governance/src/index.html +++ b/apps/governance/src/index.html @@ -17,7 +17,7 @@ - + diff --git a/apps/trading/pages/_document.page.tsx b/apps/trading/pages/_document.page.tsx index 76b0370a5..9a2552e07 100644 --- a/apps/trading/pages/_document.page.tsx +++ b/apps/trading/pages/_document.page.tsx @@ -5,12 +5,45 @@ export default function Document() { + + + + + + + + + + + + + + + + + + + + + {/* eslint-disable-next-line @next/next/no-css-tags */} diff --git a/apps/trading/pages/index.page.tsx b/apps/trading/pages/index.page.tsx index dde031961..dcc895c04 100644 --- a/apps/trading/pages/index.page.tsx +++ b/apps/trading/pages/index.page.tsx @@ -1,4 +1,3 @@ -import Head from 'next/head'; import { ClientRouter } from './client-router'; /** @@ -7,30 +6,5 @@ import { ClientRouter } from './client-router'; * have to serve a static site via next export */ export default function Index() { - return ( - <> - - - - - - - - - - - VEGA Console dApp - - - - ); + return ; }