Your request is confirmed.
+ + diff --git a/public/error.html b/public/error.html new file mode 100644 index 000000000..4707860d3 --- /dev/null +++ b/public/error.html @@ -0,0 +1,19 @@ + + +An error occurred:
++ + +
+ + + From 0bd5a77553ab2dc5c446cb7f4e3aacafdedf050a Mon Sep 17 00:00:00 2001 From: binh-dam-ibigroup <56846598+binh-dam-ibigroup@users.noreply.github.com> Date: Thu, 31 Oct 2024 09:13:20 -0400 Subject: [PATCH 09/87] refactor(confirmation.html): Merge error and confirmation pages --- public/confirmation.html | 18 +++++++++++++++++- public/error.html | 19 ------------------- 2 files changed, 17 insertions(+), 20 deletions(-) delete mode 100644 public/error.html diff --git a/public/confirmation.html b/public/confirmation.html index 3d34e48ff..5d9508e3f 100644 --- a/public/confirmation.html +++ b/public/confirmation.html @@ -1,5 +1,21 @@ + +Your request is confirmed.
++ Your request is confirmed. + +
+ diff --git a/public/error.html b/public/error.html deleted file mode 100644 index 4707860d3..000000000 --- a/public/error.html +++ /dev/null @@ -1,19 +0,0 @@ - - -An error occurred:
-- - -
- - - From 368d0faa596988241804495720018a25ff1adf15 Mon Sep 17 00:00:00 2001 From: josh-willis-arcadis <168561922+josh-willis-arcadis@users.noreply.github.com> Date: Mon, 4 Nov 2024 14:32:15 -0600 Subject: [PATCH 10/87] refactor(user/types): add status values --- lib/components/user/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/components/user/types.ts b/lib/components/user/types.ts index f85ffa487..17efeb1f2 100644 --- a/lib/components/user/types.ts +++ b/lib/components/user/types.ts @@ -33,7 +33,7 @@ export interface CompanionInfo { acceptKey?: string email: string nickname?: string - status?: string + status?: 'PENDING' | 'CONFIRMED' | 'INVALID' } /** From afaa8080f33dd68e668d0322dbd7221be800b131 Mon Sep 17 00:00:00 2001 From: Josh Willis <168561922+josh-willis-arcadis@users.noreply.github.com> Date: Mon, 4 Nov 2024 14:40:10 -0600 Subject: [PATCH 11/87] Fix code scanning alert no. 7: Client-side cross-site scripting Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- public/confirmation.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/public/confirmation.html b/public/confirmation.html index 5d9508e3f..70ad909bf 100644 --- a/public/confirmation.html +++ b/public/confirmation.html @@ -8,13 +8,15 @@