🎨 Autoformat code

This commit is contained in:
Daniel Gasienica 2018-04-24 16:57:14 -04:00
parent 823a58f98a
commit cd6912f0dd
3 changed files with 3 additions and 5 deletions

View file

@ -67,9 +67,7 @@ export class Lightbox extends React.Component<Props, {}> {
} }
public render() { public render() {
const { const { imageURL } = this.props;
imageURL,
} = this.props;
return ( return (
<div <div
style={styles.container} style={styles.container}

View file

@ -195,7 +195,7 @@ export class Quote extends React.Component<Props, {}> {
authorColor, authorColor,
'quoted-message', 'quoted-message',
isFromMe ? 'from-me' : null, isFromMe ? 'from-me' : null,
!onClick ? 'no-click' : null, !onClick ? 'no-click' : null
); );
return ( return (

View file

@ -212,6 +212,6 @@ parent.emoji.signalReplace = (html: string): string => {
return html.replace( return html.replace(
/🔥/g, /🔥/g,
'<img src="node_modules/emoji-datasource-apple/img/apple/64/1f525.png"' + '<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:">'
); );
}; };