mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
Fix some tslint errors
I really need to get it running in my editor!
This commit is contained in:
parent
bd88407b78
commit
fdc13d0af3
2 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -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:">',
|
||||
);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue