fix(main): 마이 탭 선택 아이콘을 수정한다

This commit is contained in:
Yu Sung
2026-05-19 17:03:47 +09:00
parent 1a5df53edb
commit d247bb4958
3 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "ic_nav_my_selected.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 556 B

View File

@@ -33,7 +33,7 @@ enum MainTab: CaseIterable, Hashable {
case .chat: case .chat:
return "ic_nav_chat_selected" return "ic_nav_chat_selected"
case .my: case .my:
return "ic_tabbar_my_selected" return "ic_nav_my_selected"
} }
} }