We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb99df4 commit 13a90f0Copy full SHA for 13a90f0
1 file changed
src/components/TopBar/HamburgerMenu.jsx
@@ -34,21 +34,19 @@ const HamburgerMenu = createMenu({
34
</MenuItem>,
35
);
36
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
+ items.push(
+ <MenuItem
+ isDisabled={isEditingInstructions}
+ key="addOrEditInstructions"
+ onClick={isEditingInstructions ? noop : onStartEditingInstructions}
+ >
+ {
+ hasInstructions ?
+ t('top-bar.edit-instructions') :
+ t('top-bar.add-instructions')
+ }
+ </MenuItem>,
+ );
52
53
if (isUserAuthenticated) {
54
items.push(
0 commit comments