From ae92dd1da8da5b8717189c07f74cf9c32f42352d Mon Sep 17 00:00:00 2001 From: funcsom Date: Mon, 31 Mar 2025 12:59:19 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20oauth=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/authorization/linkUserReservation.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/api/authorization/linkUserReservation.ts b/src/api/authorization/linkUserReservation.ts index 066ef369..1346e74a 100644 --- a/src/api/authorization/linkUserReservation.ts +++ b/src/api/authorization/linkUserReservation.ts @@ -2,11 +2,13 @@ import API from '../axiosIntance'; export const linkUserReservation = async (phone: string) => { try { - const response = await API.post('/reservation/link-user', { - params: { - phone: phone, + const response = await API.post( + '/reservation/link-user', + {}, + { + params: { phone }, }, - }); + ); return response.data; } catch (error) {