mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
prepare for build
This commit is contained in:
@@ -114,8 +114,8 @@ export default function AboutSlider() {
|
||||
fontSize={{ base: 'md', lg: 'lg' }}
|
||||
color="GrayText"
|
||||
>
|
||||
{card.text.split('<br/>').map((str) => (
|
||||
<p>{str}</p>
|
||||
{card.text.split('<br/>').map((str, index) => (
|
||||
<p key={index}>{str}</p>
|
||||
))}
|
||||
</Text>
|
||||
</Stack>
|
||||
|
@@ -114,8 +114,8 @@ export default function NewsSlider() {
|
||||
fontSize={{ base: 'md', lg: 'lg' }}
|
||||
color="GrayText"
|
||||
>
|
||||
{card.text.split('<br/>').map((str) => (
|
||||
<p>{str}</p>
|
||||
{card.text.split('<br/>').map((str, index) => (
|
||||
<p key={index}>{str}</p>
|
||||
))}
|
||||
</Text>
|
||||
</Stack>
|
||||
|
Reference in New Issue
Block a user