From a00a9f044901d4620293c35c5d3386f4085e5d9d Mon Sep 17 00:00:00 2001 From: Peter Lewis Date: Wed, 1 Feb 2023 11:24:58 +0000 Subject: [PATCH] Update api.js --- src/www/js/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/js/api.js b/src/www/js/api.js index 84885f17..826a7652 100644 --- a/src/www/js/api.js +++ b/src/www/js/api.js @@ -62,7 +62,7 @@ class API { return this.call({ method: 'get', path: '/wireguard/client', - }).then(clients => clients.map(client => ({ + }).then((clients) => clients.map((client) => ({ ...client, createdAt: new Date(client.createdAt), updatedAt: new Date(client.updatedAt),