Skip to content

Commit 13aa860

Browse files
committed
feat(web): add debug info to desktop version in help component
1 parent 7f8be8e commit 13aa860

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

web/src/layout/Header/navbar/Menu/Help.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import ETH from "svgs/icons/eth.svg";
99
import Faq from "svgs/menu-icons/help.svg";
1010
import Telegram from "svgs/socialmedia/telegram.svg";
1111
import { IHelp } from "..";
12+
import Debug from "../Debug";
1213

1314
const Container = styled.div`
1415
display: flex;
@@ -32,7 +33,7 @@ const Container = styled.div`
3233
${landscapeStyle(
3334
() => css`
3435
margin-top: 64px;
35-
width: 240px;
36+
width: 260px;
3637
top: 0;
3738
right: 0;
3839
left: auto;
@@ -112,6 +113,7 @@ const Help: React.FC<IHelp> = ({ toggleIsHelpOpen }) => {
112113
<small>{item.text}</small>
113114
</ListItem>
114115
))}
116+
<Debug />
115117
</Container>
116118
);
117119
};

web/src/layout/Header/navbar/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import LightButton from "components/LightButton";
1111
import { Overlay } from "components/Overlay";
1212
import KlerosSolutionsIcon from "svgs/menu-icons/kleros-solutions.svg";
1313
import Menu from "./Menu";
14-
import Debug from "./Debug";
1514
import Help from "./Menu/Help";
1615
import Settings from "./Menu/Settings";
1716
import { DisconnectWalletButton } from "./Menu/Settings/General";
@@ -97,7 +96,6 @@ const NavBar: React.FC = () => {
9796
<hr />
9897
<Menu {...{ toggleIsHelpOpen, toggleIsSettingsOpen }} />
9998
<br />
100-
<Debug />
10199
</Container>
102100
{(isDappListOpen || isHelpOpen || isSettingsOpen) && (
103101
<PopupContainer>

0 commit comments

Comments
 (0)