From 31da2263015f6e5913dfc5928609d0c7005d6f2d Mon Sep 17 00:00:00 2001 From: Syafiqjos Date: Wed, 24 Jan 2024 15:49:58 +0700 Subject: [PATCH] docs: fix response body from tokens to token in quick-start docs --- docs/content/1.getting-started/3.quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/1.getting-started/3.quick-start.md b/docs/content/1.getting-started/3.quick-start.md index b892d9cd..91c210a6 100644 --- a/docs/content/1.getting-started/3.quick-start.md +++ b/docs/content/1.getting-started/3.quick-start.md @@ -95,7 +95,7 @@ The backend must accept a request with a body like: and return a token that can be used to authenticate future requests in the response body, e.g., like: ```ts { - tokens: { + token: { accessToken: 'eyBlaBlub' } } @@ -142,7 +142,7 @@ The backend must accept a request with a body like: and return a token that can be used to authenticate future requests in the response body, e.g., like: ```ts { - tokens: { + token: { accessToken: 'eyBlaBlub' refreshToken: 'eyBlaubwww' }