From cd143d8758d3fc7364bd0fbd5e8acd087fa1291d Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 15 Apr 2020 09:59:33 +1000 Subject: [PATCH] remove useless code and make sha commit selectable --- ts/components/session/RegistrationTabs.tsx | 4 +--- ts/components/session/settings/SessionSettings.tsx | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/ts/components/session/RegistrationTabs.tsx b/ts/components/session/RegistrationTabs.tsx index a7fb044db..79efc3f58 100644 --- a/ts/components/session/RegistrationTabs.tsx +++ b/ts/components/session/RegistrationTabs.tsx @@ -551,8 +551,6 @@ export class RegistrationTabs extends React.Component<{}, State> { } private renderTermsConditionAgreement() { - // FIXME add link to our Terms and Conditions and privacy statement - return (
@@ -893,7 +891,7 @@ export class RegistrationTabs extends React.Component<{}, State> { await this.accountManager.requestPairing(primaryPubKey); const pubkey = window.textsecure.storage.user.getNumber(); const words = window.mnemonic.pubkey_to_secret_words(pubkey); - window.console.log(`Here is your secret:\n${words}`); + // window.console.log(`Here is your secret:\n${words}`); window.pushToast({ title: `${window.i18n('secretPrompt')}`, description: words, diff --git a/ts/components/session/settings/SessionSettings.tsx b/ts/components/session/settings/SessionSettings.tsx index 9660fc0a4..dcd175ac9 100644 --- a/ts/components/session/settings/SessionSettings.tsx +++ b/ts/components/session/settings/SessionSettings.tsx @@ -256,8 +256,8 @@ export class SettingsView extends React.Component { public renderSessionInfo(): JSX.Element { return (
- v{window.versionInfo.version} - {window.versionInfo.commitHash} + v{window.versionInfo.version} + {window.versionInfo.commitHash}
); }