about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/compose/components/options.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/flavours/glitch/features/compose/components/options.js')
-rw-r--r--app/javascript/flavours/glitch/features/compose/components/options.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/components/options.js b/app/javascript/flavours/glitch/features/compose/components/options.js
index d30fb2a98..085da18ea 100644
--- a/app/javascript/flavours/glitch/features/compose/components/options.js
+++ b/app/javascript/flavours/glitch/features/compose/components/options.js
@@ -96,7 +96,7 @@ class ToggleOption extends ImmutablePureComponent {
   };
 
   render() {
-    const { name, meta, text, checked } = this.props;
+    const { meta, text, checked } = this.props;
 
     return (
       <React.Fragment>
@@ -173,7 +173,7 @@ class ComposerOptions extends ImmutablePureComponent {
     this.fileElement = fileElement;
   }
 
-  renderToggleItemContents = (item, index) => {
+  renderToggleItemContents = (item) => {
     const { onChangeAdvancedOption } = this.props;
     const { name, meta, text } = item;