From 1c046abf5f3734d9d035880ffb533173f37117f0 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 17 Jul 2024 16:19:15 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F(frontend)=20minor=20typo=20d?= =?UTF-8?q?etected=20on=20webstorm?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No big deal, just a little nit-pick. Nothing personal! My IDE is THE nit-picker. --- src/frontend/src/features/auth/api/fetchUser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/src/features/auth/api/fetchUser.ts b/src/frontend/src/features/auth/api/fetchUser.ts index c2a60c9a..512b3d02 100644 --- a/src/frontend/src/features/auth/api/fetchUser.ts +++ b/src/frontend/src/features/auth/api/fetchUser.ts @@ -3,7 +3,7 @@ import { fetchApi } from '@/api/fetchApi' import { type ApiUser } from './ApiUser' /** - * fetch the logged in user from the api. + * fetch the logged-in user from the api. * * If the user is not logged in, the api returns a 401 error. * Here our wrapper just returns false in that case, without triggering an error: