diff --git a/apps/ssb.json b/apps/ssb.json
index fb77ab2e..634cec42 100644
--- a/apps/ssb.json
+++ b/apps/ssb.json
@@ -1,5 +1,5 @@
{
"type": "tildefriends-app",
"emoji": "đ",
- "previous": "&raSj7ozmSDNGmB6TtjDk7oOiTc33ZN+RrBMASJ2F4cA=.sha256"
+ "previous": "&cN1BLgsD5fU8QzkNbtKR/Ie1fO3miBq8FVSpgNqFbrc=.sha256"
}
diff --git a/apps/ssb/tf-app.js b/apps/ssb/tf-app.js
index 37429065..b32b6241 100644
--- a/apps/ssb/tf-app.js
+++ b/apps/ssb/tf-app.js
@@ -345,13 +345,15 @@ class TfElement extends LitElement {
([k, v]) => html`
`
)}
diff --git a/apps/ssb/tf-tab-connections.js b/apps/ssb/tf-tab-connections.js
index f85d5b0d..05f9841c 100644
--- a/apps/ssb/tf-tab-connections.js
+++ b/apps/ssb/tf-tab-connections.js
@@ -193,12 +193,16 @@ class TfTabConnectionsElement extends LitElement {
${this.identities.map(
(x) =>
html`
- ${x == this.server_identity ?
- html`đĨ local server` :
- undefined}
- ${this.my_identities.indexOf(x) != -1 ?
- html`đ you` :
- undefined}
+ ${x == this.server_identity
+ ? html`đĨ local server`
+ : undefined}
+ ${this.my_identities.indexOf(x) != -1
+ ? html`đ you`
+ : undefined}
`
)}
diff --git a/apps/ssb/tf-tab-news.js b/apps/ssb/tf-tab-news.js
index bab29339..b2d50b59 100644
--- a/apps/ssb/tf-tab-news.js
+++ b/apps/ssb/tf-tab-news.js
@@ -115,13 +115,17 @@ class TfTabNewsElement extends LitElement {
>`
: undefined;
let edit_profile;
- if (!this.loading &&
+ if (
+ !this.loading &&
this.users[this.whoami]?.name === undefined &&
- this.hash.substring(1) != this.whoami) {
- edit_profile = html`
-
- âšī¸ Follow your identity link âī¸ above to edit your profile and set your name.
-
`;
+ this.hash.substring(1) != this.whoami
+ ) {
+ edit_profile = html`
+ âšī¸ Follow your identity link âī¸ above to edit your profile and set your
+ name.
+
`;
}
return html`