Fix some tslint errors

I really need to get it running in my editor!
This commit is contained in:
Scott Nonnenberg 2018-04-20 16:19:53 -07:00
parent bd88407b78
commit fdc13d0af3
No known key found for this signature in database
GPG key ID: 5F82280C35134661
2 changed files with 2 additions and 2 deletions

View file

@ -171,7 +171,7 @@ export class Quote extends React.Component<Props, {}> {
// We need the container to give us the flexibility to implement the iOS design.
return (
<div className="close-container">
<div className="close-button" onClick={onClick}></div>
<div className="close-button" onClick={onClick} />
</div>
);
}

View file

@ -211,6 +211,6 @@ parent.emoji.signalReplace = (html: string): string => {
return html.replace(
/🔥/g,
'<img src="node_modules/emoji-datasource-apple/img/apple/64/1f525.png"' +
'class="emoji" data-codepoints="1f525" title=":fire:">'
'class="emoji" data-codepoints="1f525" title=":fire:">',
);
};