Allow us to find the Share button.

This commit is contained in:
Michael Kaye
2023-09-27 17:24:53 +01:00
parent 5d7e1c0e30
commit 3658aed3b3

View File

@@ -24,7 +24,7 @@ export const ShareButton: FC<
> = (props) => {
const { t } = useTranslation();
return (
<Button kind="secondary" size="sm" Icon={UserAddSolidIcon} {...props}>
<Button data-testid="open_share_modal" kind="secondary" size="sm" Icon={UserAddSolidIcon} {...props}>
{t("Share")}
</Button>
);