From 35d8eb91d64afa703bff0afa6d304490bc8a69ab Mon Sep 17 00:00:00 2001 From: dutexion Date: Wed, 8 May 2024 19:50:28 +0900 Subject: [PATCH] no warn --- src/pages/Team/deploy/Create.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Team/deploy/Create.tsx b/src/pages/Team/deploy/Create.tsx index fdb93ac..8590247 100644 --- a/src/pages/Team/deploy/Create.tsx +++ b/src/pages/Team/deploy/Create.tsx @@ -37,7 +37,7 @@ export const TeamDeployCreate = () => { const { mutate } = useMutation({ mutationFn: () => instance.post(`deploy?team_id=${'5e25c8b1-4f7c-4703-8752-45294dd87c6a'}`, data), onSuccess: (res) => { - const { deploy_id, team_id } = res?.data; + const { deploy_id } = res?.data; console.log(res?.data); navigate(`/team/1/deploy/${deploy_id}`); },