Fix lint errors
This commit is contained in:
@@ -89,6 +89,7 @@ const VersionShowPage = ({
|
|||||||
{battlesuits.map((battlesuit) => {
|
{battlesuits.map((battlesuit) => {
|
||||||
return (
|
return (
|
||||||
<NextLink
|
<NextLink
|
||||||
|
key={battlesuit.id}
|
||||||
href={`/honkai3rd/battlesuits/${battlesuit.id}`}
|
href={`/honkai3rd/battlesuits/${battlesuit.id}`}
|
||||||
passHref
|
passHref
|
||||||
>
|
>
|
||||||
@@ -114,7 +115,11 @@ const VersionShowPage = ({
|
|||||||
<Box mb={3} sx={{ display: 'inline-block' }}>
|
<Box mb={3} sx={{ display: 'inline-block' }}>
|
||||||
{weapons.map((weapon) => {
|
{weapons.map((weapon) => {
|
||||||
return (
|
return (
|
||||||
<NextLink href={`/honkai3rd/weapons/${weapon.id}`} passHref>
|
<NextLink
|
||||||
|
key={weapon.id}
|
||||||
|
href={`/honkai3rd/weapons/${weapon.id}`}
|
||||||
|
passHref
|
||||||
|
>
|
||||||
<Link>
|
<Link>
|
||||||
<Flex sx={{ alignItems: 'center' }} mb={2}>
|
<Flex sx={{ alignItems: 'center' }} mb={2}>
|
||||||
<SquareImageBox
|
<SquareImageBox
|
||||||
|
|||||||
@@ -88,6 +88,7 @@ const VersionIndexPage = ({
|
|||||||
{currentVersionNewBattlesuits.map((battlesuit) => {
|
{currentVersionNewBattlesuits.map((battlesuit) => {
|
||||||
return (
|
return (
|
||||||
<NextLink
|
<NextLink
|
||||||
|
key={battlesuit.id}
|
||||||
href={`/honkai3rd/battlesuits/${battlesuit.id}`}
|
href={`/honkai3rd/battlesuits/${battlesuit.id}`}
|
||||||
passHref
|
passHref
|
||||||
>
|
>
|
||||||
@@ -113,7 +114,11 @@ const VersionIndexPage = ({
|
|||||||
<Box mb={3} sx={{ display: 'inline-block' }}>
|
<Box mb={3} sx={{ display: 'inline-block' }}>
|
||||||
{currentVersionNewWeapons.map((weapon) => {
|
{currentVersionNewWeapons.map((weapon) => {
|
||||||
return (
|
return (
|
||||||
<NextLink href={`/honkai3rd/weapons/${weapon.id}`} passHref>
|
<NextLink
|
||||||
|
key={weapon.id}
|
||||||
|
href={`/honkai3rd/weapons/${weapon.id}`}
|
||||||
|
passHref
|
||||||
|
>
|
||||||
<Link>
|
<Link>
|
||||||
<Flex sx={{ alignItems: 'center' }} mb={2}>
|
<Flex sx={{ alignItems: 'center' }} mb={2}>
|
||||||
<SquareImageBox
|
<SquareImageBox
|
||||||
|
|||||||
Reference in New Issue
Block a user