diff --git a/src/app.css b/src/app.css index 21780a77..09bf279f 100644 --- a/src/app.css +++ b/src/app.css @@ -109,7 +109,7 @@ } .ellipsize { - @apply text-ellipsis overflow-hidden; + @apply overflow-hidden text-ellipsis; } .content { diff --git a/src/app/commands.ts b/src/app/commands.ts index 97b0bca9..51279517 100644 --- a/src/app/commands.ts +++ b/src/app/commands.ts @@ -190,7 +190,7 @@ export const setInboxRelayPolicy = (url: string, enabled: boolean) => { // Relay access export const checkRelayAccess = async (url: string, claim = "") => { - const connection = ctx.net.pool.get(url) + const connection = ctx.net.pool.get(url) await connection.auth.attemptIfRequested() await connection.auth.waitIfPending() diff --git a/src/app/components/ChatMessage.svelte b/src/app/components/ChatMessage.svelte index ff5148fc..67fecc9c 100644 --- a/src/app/components/ChatMessage.svelte +++ b/src/app/components/ChatMessage.svelte @@ -70,10 +70,7 @@