Skip to content

Commit

Permalink
Merge pull request #473 from skaf-coding/feature/SimetriaBoxers
Browse files Browse the repository at this point in the history
Cambiar orden boxeadores para que quede simétrica la vista
  • Loading branch information
midudev authored Mar 13, 2024
2 parents 776d31a + 1593f48 commit 30be5e6
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions src/consts/boxers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ interface Boxer {
}

export const BOXERS: Boxer[] = [
{
id: "zeling",
name: "Zeling",
realName: "Alicia González",
age: 28,
weight: 65, // No encontrado
height: 1.7, // No es seguro
country: "es",
},
{
id: "el-mariana",
name: "El Mariana",
Expand All @@ -18,6 +27,15 @@ export const BOXERS: Boxer[] = [
height: 1.95,
country: "mx",
},
{
id: "alana",
name: "Alana",
realName: "Alana Flores",
age: 23,
weight: 55,
height: 1.7,
country: "mx",
},
{
id: "plex",
name: "YoSoyPlex",
Expand Down Expand Up @@ -54,24 +72,6 @@ export const BOXERS: Boxer[] = [
height: 1.58,
country: "mx",
},
{
id: "alana",
name: "Alana",
realName: "Alana Flores",
age: 23,
weight: 55,
height: 1.7,
country: "mx",
},
{
id: "zeling",
name: "Zeling",
realName: "Alicia González",
age: 28,
weight: 65, // No encontrado
height: 1.7, // No es seguro
country: "es",
},
{
id: "nissaxter",
name: "Nissaxter",
Expand All @@ -81,15 +81,6 @@ export const BOXERS: Boxer[] = [
height: 1.64,
country: "es",
},
{
id: "la-cobra",
name: "La Cobra",
realName: "Lautaro Damián del Campo",
age: 26,
weight: 105,
height: 1.83,
country: "ar",
},
{
id: "guanyar",
name: "Guanyar",
Expand All @@ -99,6 +90,15 @@ export const BOXERS: Boxer[] = [
height: 1.88,
country: "es",
},
{
id: "la-cobra",
name: "La Cobra",
realName: "Lautaro Damián del Campo",
age: 26,
weight: 105,
height: 1.83,
country: "ar",
},
{
id: "agustin-51",
name: "Agustin51",
Expand Down

0 comments on commit 30be5e6

Please sign in to comment.