We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb82c67 commit 6a05b74Copy full SHA for 6a05b74
web/src/components/Popup/MiniGuides/PageContentsTemplate.tsx
@@ -76,8 +76,8 @@ const LeftContent: React.FC<{
76
<LeftContentContainer>
77
<Title>{title}</Title>
78
<ParagraphsContainer>
79
- {paragraphs.map((paragraph, index) => (
80
- <StyledParagraph key={index}>{processNewLineInParagraph(paragraph)}</StyledParagraph>
+ {paragraphs.map((paragraph) => (
+ <StyledParagraph key={paragraph}>{processNewLineInParagraph(paragraph)}</StyledParagraph>
81
))}
82
</ParagraphsContainer>
83
{links && links.length > 0 && toggleSubMiniGuide ? (
0 commit comments