diff --git a/examples/clientsocket/components/tabs/ConnectionTab.vue b/examples/clientsocket/components/tabs/ConnectionTab.vue
index 570de98f..988e02f8 100644
--- a/examples/clientsocket/components/tabs/ConnectionTab.vue
+++ b/examples/clientsocket/components/tabs/ConnectionTab.vue
@@ -45,30 +45,21 @@
@@ -164,11 +152,11 @@
Static ID:
- {{ connectionState.staticId || 'N/A' }}
+ {{ connectionState.staticId || "N/A" }}
IP Address:
- {{ connectionState.ipAddress || 'N/A' }}
+ {{ connectionState.ipAddress || "N/A" }}
User ID:
@@ -180,7 +168,9 @@
Connected At:
- {{ new Date(connectionState.connectionStartTime || 0).toLocaleString() }}
+ {{
+ new Date(connectionState.connectionStartTime || 0).toLocaleString()
+ }}
Latency:
@@ -196,8 +186,8 @@