diff --git a/src/app/(post)/createPost/_components/PostForm/index.tsx b/src/app/(post)/createPost/_components/PostForm/index.tsx index 71a1efc..6717de8 100644 --- a/src/app/(post)/createPost/_components/PostForm/index.tsx +++ b/src/app/(post)/createPost/_components/PostForm/index.tsx @@ -48,7 +48,7 @@ const PostForm = () => { const onSubmitPost = (data: PostRequestBody) => { createPost(data); - Toast.default('검색 되었습니다.'); + Toast.default('등록되었습니다.'); router.push('/'); };