Skip to content

Commit

Permalink
[MOD] music id string으로 리턴되도록 수정 #104
Browse files Browse the repository at this point in the history
  • Loading branch information
hujumee committed Jan 30, 2023
1 parent ddb66b9 commit 399ed4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/services/MumentService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ const getTodayMument = async (): Promise<TodayMumentResponseDto | number> => {
const todayMumentCard: TodaySelectionInfo = {
mumentId: todayMument.id,
music: {
_id: todayMument.music_id,
_id: todayMument.music_id.toString(),
name: todayMument.name,
artist: todayMument.artist,
image: todayMument.image,
Expand Down Expand Up @@ -864,7 +864,7 @@ const getBanner = async (): Promise<TodayBannerResponseDto | number> => {

bannerList.push({
music: {
_id: element.music_id,
_id: element.music_id.toString(),
name: element.name,
artist: element.artist,
image: element.image,
Expand Down Expand Up @@ -916,7 +916,7 @@ const getAgainMument = async (): Promise<AgainMumentResponseDto | number> => {
againMument.push({
mumentId: element.id,
music: {
_id: element.music_id,
_id: element.music_id.toString(),
name: element.music_name,
artist: element.artist,
image: element.music_image,
Expand Down

0 comments on commit 399ed4e

Please sign in to comment.