style: format account activation email template

- Remove unnecessary line breaks in the activation link
- Clean up the formatting of the email template

This commit improves the readability of the account activation
email template by removing redundant line breaks and ensuring
consistent formatting. No functional changes were made to the
link or its behavior.
This commit is contained in:
songtianlun 2025-01-08 14:13:45 +08:00
parent 1f2c66300a
commit 299e930d1a

View File

@ -6,10 +6,8 @@
Welcome to the Sample App! Click on the link below to activate your account: Welcome to the Sample App! Click on the link below to activate your account:
</p> </p>
<%= link_to "Activate", edit_account_activation_url(@user.activation_token, <%= link_to "Activate", edit_account_activation_url(@user.activation_token, email: @user.email) %>
email: @user.email) %>
<p> <p>
<%= edit_account_activation_url(@user.activation_token, <%= edit_account_activation_url(@user.activation_token, email: @user.email) %>
email: @user.email) %>
</p> </p>