@@ -37,7 +37,7 @@ export default function ProfileAvatar({ profileData, itemsData }: ProfileAvatarP
3737 const leftHandItem = itemsBySlot [ 'Mlhand' ] ;
3838 if ( leftHandItem ) {
3939 const imageName = leftHandItem . id ;
40- const imageUrl = `https://api.solidloop-studio.xyz/kkuko/img?url=https:// cdn.kkutu.co.kr/img/kkutu/moremi/hand/${ imageName } .png` ;
40+ const imageUrl = `https://cdn.kkutu.co.kr/img/kkutu/moremi/hand/${ imageName } .png` ;
4141
4242 layers . push ( {
4343 key : `hand-left-${ index } ` ,
@@ -51,7 +51,7 @@ export default function ProfileAvatar({ profileData, itemsData }: ProfileAvatarP
5151 const rightHandItem = itemsBySlot [ 'Mrhand' ] ;
5252 if ( rightHandItem ) {
5353 const imageName = rightHandItem . id ;
54- const imageUrl = `https://api.solidloop-studio.xyz/kkuko/img?url=https:// cdn.kkutu.co.kr/img/kkutu/moremi/hand/${ imageName } .png` ;
54+ const imageUrl = `https://cdn.kkutu.co.kr/img/kkutu/moremi/hand/${ imageName } .png` ;
5555
5656 layers . push ( {
5757 key : `hand-right-${ index } ` ,
@@ -67,7 +67,7 @@ export default function ProfileAvatar({ profileData, itemsData }: ProfileAvatarP
6767
6868 if ( item ) {
6969 const imageName = item . name === 'def' ? 'def' : item . id ;
70- const imageUrl = `https://api.solidloop-studio.xyz/kkuko/img?url=https:// cdn.kkutu.co.kr/img/kkutu/moremi/${ group } /${ imageName } .png` ;
70+ const imageUrl = `https://cdn.kkutu.co.kr/img/kkutu/moremi/${ group } /${ imageName } .png` ;
7171
7272 layers . push ( {
7373 key : `${ group } -${ index } ` ,
@@ -77,7 +77,7 @@ export default function ProfileAvatar({ profileData, itemsData }: ProfileAvatarP
7777 } ) ;
7878 } else if ( group !== 'badge' && item === undefined ) {
7979 const itemId = 'def' ;
80- const imageUrl = `https://api.solidloop-studio.xyz/kkuko/img?url=https:// cdn.kkutu.co.kr/img/kkutu/moremi/${ group } /${ itemId } .png` ;
80+ const imageUrl = `https://cdn.kkutu.co.kr/img/kkutu/moremi/${ group } /${ itemId } .png` ;
8181 layers . push ( {
8282 key : `${ group } -${ index } ` ,
8383 url : imageUrl ,
0 commit comments