tweak verbiage

This commit is contained in:
2024-12-13 13:42:21 -07:00
parent 156950c7f0
commit dd6598cd99
3 changed files with 6 additions and 3 deletions

View File

@@ -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(

View File

@@ -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;
}

View File

@@ -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>