Skip to content

Commit 58d8fc1

Browse files
committed
👌 fixed warnings on MobileSketchView and MobilePreferences
1 parent 82ec520 commit 58d8fc1

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

client/modules/Mobile/MobilePreferences.jsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,11 @@ const MobilePreferences = (props) => {
5555
value: 'dark', label: 'dark', ariaLabel: 'dark theme on', name: 'dark theme', id: 'dark-theme-on'
5656
},
5757
{
58-
value: 'contrast', label: 'contrast', ariaLabel: 'contrast theme on', name: 'contrast theme', id: 'contrast-theme-on'
58+
value: 'contrast',
59+
label: 'contrast',
60+
ariaLabel: 'contrast theme on',
61+
name: 'contrast theme',
62+
id: 'contrast-theme-on'
5963
}
6064
],
6165
onSelect: x => setTheme(x) // setTheme

client/modules/Mobile/MobileSketchView.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
3-
import { Link } from 'react-router';
43
import { bindActionCreators } from 'redux';
54
import { connect } from 'react-redux';
65
import styled from 'styled-components';

0 commit comments

Comments
 (0)