Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 0a326dc

Browse files
committed
Take feature_sticker_messagse out of labs
1 parent 97b9316 commit 0a326dc

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

src/components/views/rooms/MessageComposer.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -338,10 +338,7 @@ export default class MessageComposer extends React.Component {
338338
}
339339
}
340340

341-
let stickerpickerButton;
342-
if (SettingsStore.isFeatureEnabled('feature_sticker_messages')) {
343-
stickerpickerButton = <Stickerpicker key='stickerpicker_controls_button' room={this.props.room} />;
344-
}
341+
const stickerpickerButton = <Stickerpicker key='stickerpicker_controls_button' room={this.props.room} />;
345342

346343
controls.push(
347344
<MessageComposerInput

src/settings/Settings.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,6 @@ export const SETTINGS = {
9494
supportedLevels: LEVELS_FEATURE,
9595
default: false,
9696
},
97-
"feature_sticker_messages": {
98-
isFeature: true,
99-
displayName: _td("Sticker Messages"),
100-
supportedLevels: LEVELS_FEATURE,
101-
default: false,
102-
},
10397
"MessageComposerInput.dontSuggestEmoji": {
10498
supportedLevels: LEVELS_ACCOUNT_SETTINGS,
10599
displayName: _td('Disable Emoji suggestions while typing'),

0 commit comments

Comments
 (0)