Browse Source

tweak verbiage

split_build_process
Trent Larson 1 month ago
parent
commit
5a56f9ab30
  1. 2
      src/libs/endorserServer.ts
  2. 5
      src/views/ContactsView.vue
  3. 2
      src/views/HelpOnboardingView.vue

2
src/libs/endorserServer.ts

@ -1070,7 +1070,7 @@ export async function generateEndorserJwtForAccount(
contactInfo.own.profileImageUrl = profileImageUrl;
}
// Add the next key -- but note that it makes the QR more detailed
// Add the next key -- not recommended for the QR code for such a high resolution
if (includeNextKeyIfDerived && account?.mnemonic && account?.derivationPath) {
const newDerivPath = nextDerivationPath(account.derivationPath as string);
const nextPublicHex = deriveAddress(

5
src/views/ContactsView.vue

@ -684,7 +684,10 @@ export default class ContactsView extends Vue {
private async onClickNewContact(): Promise<void> {
const contactInput = this.contactInput.trim();
if (!contactInput) {
this.danger("There was no contact info to add.", "No Contact");
this.danger(
"There was no contact info to add. Try the other green buttons.",
"No Contact",
);
return;
}

2
src/views/HelpOnboardingView.vue

@ -96,7 +96,7 @@
<p>
Enable notifications from the Account page <fa icon="circle-user" />.
Those notifications might show up on the device depending on your settings.
For the most reliable habits, people should own alarm or some other ritual to look every day.
For the most reliable habits, set an alarm or do some other ritual to record gratitude every day.
</p>
</div>

Loading…
Cancel
Save