From 9a1c543859ffb23f0baaa78260c7c9071020a38a Mon Sep 17 00:00:00 2001
From: amandazhu
Date: Fri, 29 May 2026 11:57:43 +1000
Subject: [PATCH 1/3] fix: render button for registration link
---
templates/emails/incorrect_email.html | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)
diff --git a/templates/emails/incorrect_email.html b/templates/emails/incorrect_email.html
index e6ae08b8..2303fa79 100644
--- a/templates/emails/incorrect_email.html
+++ b/templates/emails/incorrect_email.html
@@ -19,9 +19,20 @@
If you haven’t already done so, please re-register here using a valid email address.
-
- BioCommons Access registration
-
+
If the button doesn't work, you can copy and paste the URL into your browser.
From e10b0d83e78d1803928908651628cb9ce7d22805 Mon Sep 17 00:00:00 2001
From: amandazhu
Date: Fri, 29 May 2026 12:04:09 +1000
Subject: [PATCH 2/3] fix: do not lint dependabot commits
---
commitlint.config.cjs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/commitlint.config.cjs b/commitlint.config.cjs
index c34aa79d..73aded1e 100644
--- a/commitlint.config.cjs
+++ b/commitlint.config.cjs
@@ -1,3 +1,4 @@
module.exports = {
- extends: ['@commitlint/config-conventional']
+ extends: ['@commitlint/config-conventional'],
+ ignores: [(message) => message.includes('dependabot[bot]')],
};
From b67b5754368454a89372c6272107e015c799015c Mon Sep 17 00:00:00 2001
From: amandazhu
Date: Fri, 29 May 2026 12:04:54 +1000
Subject: [PATCH 3/3] Revert "fix: do not lint dependabot commits"
This reverts commit e10b0d83e78d1803928908651628cb9ce7d22805.
---
commitlint.config.cjs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/commitlint.config.cjs b/commitlint.config.cjs
index 73aded1e..c34aa79d 100644
--- a/commitlint.config.cjs
+++ b/commitlint.config.cjs
@@ -1,4 +1,3 @@
module.exports = {
- extends: ['@commitlint/config-conventional'],
- ignores: [(message) => message.includes('dependabot[bot]')],
+ extends: ['@commitlint/config-conventional']
};