Skip to content

Commit 692c599

Browse files
committed
fix the first li not being formatted
1 parent f9a21e4 commit 692c599

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

backend/donations/views/account_management.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -312,9 +312,6 @@ def get(self, request, *args, **kwargs):
312312
if not user or not user.verify_token(signup_token):
313313
logger.info('Could not find any user with id "%s" signup token "%s"', user_id, signup_token)
314314
raise Http404
315-
else:
316-
# user.clear_token()
317-
pass
318315

319316
if verification_type == "v":
320317
user.is_verified = True

backend/templates/v2/emails/styles.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ blockquote {
2626
text-align: left;
2727
}
2828

29-
ol li + li,
30-
ul li + li {
29+
ol li,
30+
ul li {
3131
margin-top: 1em;
3232
font-size: 16px;
3333
}

0 commit comments

Comments
 (0)