Fix battlesuit filter icons

This commit is contained in:
Sakura Knoll
2022-07-18 08:53:00 +09:00 Unverified
parent 9d3e47dd30
commit d17777c8ea
23 changed files with 4 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 14 KiB

+4
View File
@@ -263,21 +263,25 @@ export const valkyries = [
}, },
{ {
value: 'pardofelis', value: 'pardofelis',
icon: 'valkyrie-icons/pardofelis',
label: 'Pardofelis', label: 'Pardofelis',
krLabel: '파르도 필리스', krLabel: '파르도 필리스',
}, },
{ {
value: 'aponia', value: 'aponia',
icon: 'valkyrie-icons/aponia',
label: 'Aponia', label: 'Aponia',
krLabel: '아포니아', krLabel: '아포니아',
}, },
{ {
value: 'eden', value: 'eden',
icon: 'valkyrie-icons/eden',
label: 'Eden', label: 'Eden',
krLabel: '에덴', krLabel: '에덴',
}, },
{ {
value: 'griseo', value: 'griseo',
icon: 'valkyrie-icons/griseo',
label: 'Griseo', label: 'Griseo',
krLabel: '그리세오', krLabel: '그리세오',
}, },
@@ -64,7 +64,6 @@ const BattlesuitListPage = ({ battlesuits }: BattlesuitListPageProps) => {
const battlesuitList = useMemo(() => { const battlesuitList = useMemo(() => {
return battlesuits.map((battlesuit) => { return battlesuits.map((battlesuit) => {
console.log(battlesuit)
const hidden = isBattlesuitHidden(battlesuit, filter) const hidden = isBattlesuitHidden(battlesuit, filter)
return ( return (
<BattlesuitCard <BattlesuitCard