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 c5f21d2 commit ec5aaa4Copy full SHA for ec5aaa4
src/paywall-previews/shared/FooterText.tsx
@@ -28,9 +28,11 @@ const FooterText = ({ isAuthenticated, loginFooterLabel }: Props) => (
28
onClick,
29
};
30
31
- const authText = `Welcome back ${(
32
- <strong {...elementProps}>loginFooterLabel</strong>
33
- )} Access this content!`;
+ const authText = (
+ <>
+ Welcome back <strong {...elementProps}>{loginFooterLabel}</strong> Access this content!
34
+ </>
35
+ );
36
const noAuthText = loginFooterLabel;
37
38
return (
0 commit comments