Skip to content

Commit f793954

Browse files
committed
Test that linter is working.
1 parent bc08364 commit f793954

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/CodeSnippetSearchOption.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ interface ISortSnippetOptionProps {
1414
const SearchOption = ({
1515
optionSelected,
1616
optionName,
17-
onSelectMulti
17+
onSelectMulti,
1818
}: ISortSnippetOptionProps): JSX.Element => {
1919
if (optionSelected) {
2020
return (

src/CodeSnippetSearchTools.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class SearchMultiOption extends React.Component<
4949
constructor(props: ISearchMultiProps) {
5050
super(props);
5151
this.state = {
52-
currSelected: this.props.currSelected
52+
currSelected: this.props.currSelected,
5353
};
5454
this.handleClick = this.handleClick.bind(this);
5555
}

0 commit comments

Comments
 (0)