Skip to content

Commit cf1ae50

Browse files
committed
Fix: rebase오류 수동으로 수정
1 parent 9302a52 commit cf1ae50

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

service/auth.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { AuthParams, EmailAuthParams, VerificationParams } from '@/types/types';
22

3-
export default async function createUserWithSocialLogin(params: AuthParams) {
4-
const url = `/api/auth/sign-up/social`;
3+
export async function createUserWithSocialLogin(params: AuthParams) {
54
const formData = new FormData();
65
const { body, image } = params;
76
formData.append(

types/types.ts

+5
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ export interface ModalProps {
8383
onClose: () => void;
8484
}
8585

86+
export interface VerificationParams {
87+
name: string;
88+
recipient: string;
89+
birthday: string;
90+
}
8691
interface ChatList {
8792
id: number;
8893
name: string;

0 commit comments

Comments
 (0)