Skip to content

Commit 13a90f0

Browse files
committed
Remove Instructions editing from experimental
1 parent bb99df4 commit 13a90f0

1 file changed

Lines changed: 13 additions & 15 deletions

File tree

src/components/TopBar/HamburgerMenu.jsx

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,19 @@ const HamburgerMenu = createMenu({
3434
</MenuItem>,
3535
);
3636

37-
if (isExperimental) {
38-
items.push(
39-
<MenuItem
40-
isDisabled={isEditingInstructions}
41-
key="addOrEditInstructions"
42-
onClick={isEditingInstructions ? noop : onStartEditingInstructions}
43-
>
44-
{
45-
hasInstructions ?
46-
t('top-bar.edit-instructions') :
47-
t('top-bar.add-instructions')
48-
}
49-
</MenuItem>,
50-
);
51-
}
37+
items.push(
38+
<MenuItem
39+
isDisabled={isEditingInstructions}
40+
key="addOrEditInstructions"
41+
onClick={isEditingInstructions ? noop : onStartEditingInstructions}
42+
>
43+
{
44+
hasInstructions ?
45+
t('top-bar.edit-instructions') :
46+
t('top-bar.add-instructions')
47+
}
48+
</MenuItem>,
49+
);
5250

5351
if (isUserAuthenticated) {
5452
items.push(

0 commit comments

Comments
 (0)