prepare for build

This commit is contained in:
Daniele Pancottini
2023-01-22 12:05:39 +01:00
parent d90fc561c0
commit dbc295d970
3 changed files with 5 additions and 5 deletions

View File

@@ -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>