From 08fe5c65dd6823c509d42e13976c472794596f83 Mon Sep 17 00:00:00 2001 From: rca Date: Tue, 9 Jul 2024 04:27:00 +0900 Subject: [PATCH] =?UTF-8?q?await=E6=8C=87=E5=AE=9A=E5=BF=98=E3=82=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/child/authService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/child/authService.ts b/src/services/child/authService.ts index c06bd09..e5bf3e6 100644 --- a/src/services/child/authService.ts +++ b/src/services/child/authService.ts @@ -21,7 +21,7 @@ async function login(loginCode: string): Promise { // Workaround } }); return { - accessToken: issueTokenByChildId(childId), + accessToken: await issueTokenByChildId(childId), childId: childId }; }