Commit 3c4a935c authored by Omar Luna Hernández's avatar Omar Luna Hernández
Browse files

Solucion de error de key al iterar los divs

parent 5a0bdbb3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -59,8 +59,8 @@ export const AboutUsPanel = () => {
          <div className="about_us_developers">
            {developers.map((dev, index) => {
              return (
                <div>
                  <a key={index} style={style} href={dev.linkedInURL}>
                <div key={index}>
                  <a style={style} href={dev.linkedInURL}>
                    @ {dev.name + " " + dev.lastName + " (" + dev.role + ")"}
                  </a>
                  <div
@@ -71,7 +71,7 @@ export const AboutUsPanel = () => {
                    }}
                  >
                    <h1 style={style}>Correo: </h1>
                    <a key={index} style={style} href={"mailto:" + dev.email}>
                    <a style={style} href={"mailto:" + dev.email}>
                      {dev.email}
                    </a>
                  </div>