Email Verified page does not have Log in to My App button

Hi, we are sending an email verification link - via the Node ManagementClient - after signup and want to send our user to the app after verification (which will send them to the login screen).

However, even though we are passing the app’s client_id, we are not getting the Log in to My App button as shown in the Custom Text section of Branding.

Are we missing something about how this is supposed to work?

Here’s the relevant bit of the code we’re using:

const response = await this.auth0client.tickets.verifyEmail({
				client_id: clientId,
				user_id: authId,
				ttl_sec: 1209600, // 14 days
			});