diff --git a/ts/components/conversation/Linkify.tsx b/ts/components/conversation/Linkify.tsx index 320a65fef..fb8948f5c 100644 --- a/ts/components/conversation/Linkify.tsx +++ b/ts/components/conversation/Linkify.tsx @@ -85,7 +85,8 @@ export class Linkify extends React.Component { chunkData.forEach(({ chunk, matchData }) => { if (matchData.length === 0) { - results.push(renderNonLink({ text: chunk, key: 0 })); + count += 1; + results.push(renderNonLink({ text: chunk, key: count })); return; }