Skip to content

Commit 278289a

Browse files
misoglfrostney
authored andcommitted
Fix eslint errors (#6)
* Fix eslint errors * Add missing dependency jsdom
1 parent 54104ad commit 278289a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575
"eslint-plugin-jsx-a11y": "^1.0.4",
7676
"eslint-plugin-react": "^5.0.1",
7777
"in-publish": "^2.0.0",
78+
"jsdom": "^9.12.0",
7879
"nyc": "^6.4.0",
7980
"react": "^0.14.8",
8081
"react-addons-test-utils": "^0.14.8",

src/FormattedMessage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const FormattedMessage = props => (
1111
}
1212
return node;
1313
});
14-
return createElement(Text, {style: props.style}, ...newNodes);
14+
return createElement(Text, { style: props.style }, ...newNodes);
1515
}}
1616
</Intl.FormattedMessage>
1717
);

0 commit comments

Comments
 (0)