Skip to content

Commit

Permalink
Move Log closer to the Editor
Browse files Browse the repository at this point in the history
  • Loading branch information
insmac committed Sep 15, 2023
1 parent 191581a commit 1c673c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/web-console/src/scenes/Console/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React from "react"
import styled from "styled-components"
import { Splitter, useScreenSize } from "../../components"
import Editor from "../Editor"
import Notifications from "../Notifications"
import Result from "../Result"
import Schema from "../Schema"
import { ZeroState } from "../Result/zero-state"
Expand Down Expand Up @@ -68,7 +67,6 @@ const Console = () => {
</Top>
{result ? <Result /> : <ZeroState />}
</Splitter>
<Notifications />
</EditorProvider>
</Root>
)
Expand Down
2 changes: 2 additions & 0 deletions packages/web-console/src/scenes/Editor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import { PaneWrapper } from "../../components"

import Monaco from "./Monaco"
import Menu from "./Menu"
import Notifications from "../Notifications"

type Props = Readonly<{
style?: CSSProperties
Expand All @@ -45,6 +46,7 @@ const Editor = ({
<EditorPaneWrapper ref={innerRef} {...rest}>
<Menu />
<Monaco />
<Notifications />
</EditorPaneWrapper>
)

Expand Down

0 comments on commit 1c673c2

Please sign in to comment.