Skip to content

Commit

Permalink
Testing if git package is getting installed correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
amitbadala committed Oct 20, 2023
1 parent 578815a commit fcf51e1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ export const SignInHeader = withOverride(
"EmailPasswordSignInHeader",
function EmailPasswordSignInHeader({ onClick }: { onClick: (() => void) | undefined }): JSX.Element {
const t = useTranslation();
const testing = "TESTING";

return (
<Fragment>
<div data-supertokens="headerTitle">{t("EMAIL_PASSWORD_SIGN_IN_HEADER_TITLE")}</div>
<div data-supertokens="headerSubtitle">
<div data-supertokens="secondaryText">
{t("EMAIL_PASSWORD_SIGN_IN_HEADER_SUBTITLE_START")}
{/* {t("EMAIL_PASSWORD_SIGN_IN_HEADER_SUBTITLE_START")} */}
{testing}
<span data-supertokens="link" onClick={onClick}>
{t("EMAIL_PASSWORD_SIGN_IN_HEADER_SUBTITLE_SIGN_UP_LINK")}
</span>
Expand Down

0 comments on commit fcf51e1

Please sign in to comment.