style: fix automatically-fixable lint issues

This commit is contained in:
Christopher Willis-Ford 2024-02-26 10:10:19 -08:00
parent 33df5b6eb0
commit a96fe522f4
13 changed files with 206 additions and 206 deletions

View file

@ -70,7 +70,7 @@ class FeedbackForm extends React.Component {
autoComplete="off"
autoCorrect="off"
className={classNames(
'compose-feedback',
'compose-feedback'
)}
component="textarea"
error={errors.feedback}

View file

@ -222,7 +222,7 @@ class MuteModal extends React.Component {
{this.state.step > 0 && this.state.step < steps.USER_FEEDBACK ? (
<Button
className={classNames(
'back-button',
'back-button'
)}
onClick={this.handlePrevious}
>
@ -233,7 +233,7 @@ class MuteModal extends React.Component {
) : this.state.step === steps.USER_FEEDBACK ? (
<Button
className={classNames(
'send-button',
'send-button'
)}
form="feedback-form"
type="submit"

View file

@ -10,6 +10,6 @@ module.exports = {
{
allowParens: true
}
],
]
}
};

View file

@ -10,7 +10,7 @@ describe('OSChooser', () => {
component.find('button').last()
.simulate('click');
expect(onSetOs).toBeCalledWith('Android');
expect(onSetOs).toHaveBeenCalledWith('Android');
});
test('has all 4 operating systems', () => {