-
- {getLabelForAddress(address, i18n)}
-
- {this.renderAddressLine(address.street)}
- {this.renderPOBox(address.pobox, i18n)}
- {this.renderAddressLine(address.neighborhood)}
- {this.renderAddressLineTwo(address)}
- {this.renderAddressLine(address.country)}
-
- );
- });
- }
-
- public render() {
- const { contact, i18n, onSendMessage } = this.props;
- const isIncoming = false;
- const module = 'contact-detail';
-
- return (
-
-
- {renderAvatar({ contact, i18n, size: 80 })}
-
- {renderName({ contact, isIncoming, module })}
- {renderContactShorthand({ contact, isIncoming, module })}
- {this.renderSendMessage({ i18n, onSendMessage })}
- {this.renderPhone(contact.number, i18n)}
- {this.renderAddresses(contact.address, i18n)}
-
- );
- }
-}
diff --git a/ts/util/lint/exceptions.json b/ts/util/lint/exceptions.json
index e931394ac..6db5fe3e1 100644
--- a/ts/util/lint/exceptions.json
+++ b/ts/util/lint/exceptions.json
@@ -909,14 +909,6 @@
"updated": "2018-09-15T00:38:04.183Z",
"reasonDetail": "Getting the value, not setting it"
},
- {
- "rule": "jQuery-append(",
- "path": "libtextsecure/contacts_parser.js",
- "line": " this.buffer.append(arrayBuffer);",
- "lineNumber": 6,
- "reasonCategory": "falseMatch",
- "updated": "2018-09-19T18:13:29.628Z"
- },
{
"rule": "jQuery-wrap(",
"path": "libtextsecure/crypto.js",
diff --git a/ts/window.d.ts b/ts/window.d.ts
index c79d74d01..883755c25 100644
--- a/ts/window.d.ts
+++ b/ts/window.d.ts
@@ -93,8 +93,6 @@ declare global {
getStoragePubKey: any;
getConversations: () => ConversationCollection;
getGuid: any;
- ContactBuffer: any;
- GroupBuffer: any;
SwarmPolling: SwarmPolling;
SnodePool: {
getSnodesFor: (string) => any;