Fix tests?

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-07-11 10:58:04 +02:00
parent 29ef5905d6
commit 19f14e4b2e
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,6 @@ export function join(array: Array<string | JSX.Element>, joiner?: string | JSX.E
newArray.push(element, (index === array.length - 1) ? null : joiner);
});
return (
<span> { newArray } </span>
<span>{ newArray }</span>
);
}