From c4cd1e9b386c0098b4f74fb45be81ef82986b0f2 Mon Sep 17 00:00:00 2001 From: crupest Date: Fri, 16 Aug 2024 00:08:53 +0800 Subject: feat(www): upgrade dependencies. --- docker/crupest-nginx/sites/www/src/todos.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docker/crupest-nginx/sites/www/src/todos.ts') diff --git a/docker/crupest-nginx/sites/www/src/todos.ts b/docker/crupest-nginx/sites/www/src/todos.ts index 5e36875..b69f524 100644 --- a/docker/crupest-nginx/sites/www/src/todos.ts +++ b/docker/crupest-nginx/sites/www/src/todos.ts @@ -18,10 +18,10 @@ export async function fetchTodos(): Promise { if (res.status !== 200) { console.error( - `Failed to get TODOs. Status: ${res.status}. Body: ${body}` + `Failed to get TODOs. Status: ${res.status}. Body: ${body}`, ); throw new Error( - "Failed to fetch TODOs. (Maybe due to rate limit. Please try later.)" + "Failed to fetch TODOs. (Maybe due to rate limit. Please try later.)", ); } return body; -- cgit v1.2.3