Skip to content

Commit 1df3da6

Browse files
author
Ives van Hoorne
committed
Show 'Sandbox Editor' in the editor
1 parent e70f157 commit 1df3da6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/app/src/app/pages/Sandbox/Editor/Header/Logo/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import LogoIcon from 'common/components/Logo';
44

55
import { Container, Title } from './elements';
66

7-
export default ({ title }) => (
7+
export default () => (
88
<Container id="logo" href="/">
99
<div style={{ position: 'relative', display: 'flex' }}>
1010
<LogoIcon title="CodeSandbox" width={30} height={30} />
1111
</div>
12-
<Title>{title || 'Editor'}</Title>
12+
<Title>Sandbox Editor</Title>
1313
</Container>
1414
);

packages/app/src/app/pages/Sandbox/Editor/Header/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function Header({ store, signals }) {
2929
return (
3030
<Container>
3131
<Left>
32-
<Logo title={sandbox.title} />
32+
<Logo />
3333

3434
{store.isLoggedIn &&
3535
(sandbox.userLiked ? (

0 commit comments

Comments
 (0)