File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,4 +12,5 @@ export interface getUserInfoByJwtData {
1212 profilePictureUrl : string ;
1313 bio : string ;
1414 birthDate : string ;
15+ userStyletags : string [ ] ;
1516}
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ export interface UserInfoData {
1111 bio : string ;
1212 birthDate : string ;
1313 isFriend : boolean ;
14- userStyleTag : string [ ] ;
14+ userStyletags : string [ ] ;
1515}
1616
1717// 사용자 정보 조회 응답
@@ -29,7 +29,7 @@ export interface PatchUserInfoRequest {
2929 nickname : string ;
3030 profilePictureUrl : string ;
3131 bio : string ;
32- userStyleTag : string [ ] ;
32+ userStyletags : string [ ] ;
3333}
3434
3535// 회원 탈퇴 응답
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const PickMyStyle: React.FC = () => {
3939 . filter ( ( category ) : category is string => ! ! category ) ; // undefined 제거
4040
4141 const requestData : Partial < PatchUserInfoRequest > = {
42- userStyleTag : selectedCategories ,
42+ userStyletags : selectedCategories ,
4343 } ;
4444 console . log ( requestData ) ;
4545
You can’t perform that action at this time.
0 commit comments