Is it possible to have the button label not be all...
# support-questions-legacy
a
Is it possible to have the button label not be all caps?
r
Hey! @porcellus can help here.
Checkout the language translation feature in the docs to change the text on the button to something else that’s non caps.
a
Can you please advise what is the label I need to overwrite? Tried this and didn't make a difference
Copy code
languageTranslations: {
        translations: {
            en: {
                EMAIL_VERIFICATION_CONTINUE_BTN: continueButtonLabel,
                EMAIL_VERIFICATION_LINK_CLICKED_CONTINUE_BUTTON: continueButtonLabel,
            },
        },
    },
r
try the key
PWLESS_SIGN_IN_UP_CONTINUE_BUTTON
so something like:
Copy code
ts
SuperTokens.init({
    appInfo: {
        ...
    },
    languageTranslations: {
        translations: {
            en: {
                PWLESS_SIGN_IN_UP_CONTINUE_BUTTON: "Custom text here"
            },
        },
    },
    recipeList: [...],
});
a
Worked, thanks!
r
nice
2 Views