+
persistent storage:
+
{persistent !== null ? persistent?.toString() : 'unknown'}
+
storage quota:
+
{quota !== null ? formatBytes(quota) : 'unknown'}
+
storage usage:
+
{usage !== null ? formatBytes(usage) : 'unknown'}
+
storage remaining:
+
{usage !== null && quota !== null ? formatBytes(quota - usage) : 'unknown'}
+
device key hash:
+
{localKeyHash ? shortHash(localKeyHash) : 'unknown'}
+
server key hash:
+
{remoteKeyHash ? shortHash(remoteKeyHash) : 'unknown'}
+
device key update:
+
+ {localKeyUpdatedAt ? `${timeSince(localKeyUpdatedAt)} ago` : 'unknown'}
-
-
storage quota:
-
{quota !== null ? formatBytes(quota) : 'unknown'}
+
server key update:
+
+ {remoteKeyHashUpdatedAt ? `${timeSince(new Date(remoteKeyHashUpdatedAt).getTime())} ago` : 'unknown'}
-
-
storage usage:
-
{usage !== null ? formatBytes(usage) : 'unknown'}
-
-
-
storage remaining:
-
{usage !== null && quota !== null ? formatBytes(quota - usage) : 'unknown'}
-
-
-
device key hash:
-
{localKeyHash ? shortHash(localKeyHash) : 'unknown'}
-
-
-
server key hash:
-
{remoteKeyHash ? shortHash(remoteKeyHash) : 'unknown'}
-
-
-
device key update:
-
- {localKeyUpdatedAt ? `${timeSince(localKeyUpdatedAt)} ago` : 'unknown'}
-
-
-
-
server key update:
-
- {remoteKeyHashUpdatedAt ? `${timeSince(new Date(remoteKeyHashUpdatedAt).getTime())} ago` : 'unknown'}
-
-
-
-
wallet update:
-
- {walletsUpdatedAt ? `${timeSince(new Date(walletsUpdatedAt).getTime())} ago` : 'unknown'}
-
+
wallet update:
+
+ {walletsUpdatedAt ? `${timeSince(new Date(walletsUpdatedAt).getTime())} ago` : 'unknown'}
)