Skip to content

Commit f0bc4cc

Browse files
committed
Fix opening sandbox in editor when not signed in
1 parent 0b43df9 commit f0bc4cc

File tree

1 file changed

+1
-1
lines changed
  • packages/app/src/app/pages/Sandbox/Editor/Header

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const Header = ({ store, signals }) => {
5252
}
5353
/>
5454

55-
{store.user.curatorAt ? (
55+
{store.user && store.user.curatorAt ? (
5656
<Action
5757
title="Pick"
5858
Icon={() => (

0 commit comments

Comments
 (0)