Nickname
-
{{ userStore?.nickNames?.[row.fingerprint] || '-' }}
+
{{ userStore?.relaysMeta?.[row.fingerprint]?.nickname || '-' }}
Running
diff --git a/composables/txCache.ts b/composables/txCache.ts
index 52ecb1c..36d263d 100755
--- a/composables/txCache.ts
+++ b/composables/txCache.ts
@@ -58,7 +58,6 @@ export class TxCache {
if (fromCache) {
return fromCache;
}
-
const fetched = await $fetch
(`${gateway}/${txId}`);
await this.saveTransactionData(txId, fetched);