From 7749a7df7e601800bab0da02443a7bfaa42f48df Mon Sep 17 00:00:00 2001 From: Lukas Date: Sat, 28 Sep 2024 12:21:27 +0200 Subject: [PATCH 1/2] fix(ceremony): text changes --- ceremony/src/lib/components/Terminal/Authenticate.svelte | 2 +- ceremony/src/lib/components/Terminal/Waitlist.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ceremony/src/lib/components/Terminal/Authenticate.svelte b/ceremony/src/lib/components/Terminal/Authenticate.svelte index e2f1ba24dd..8d5238a42f 100644 --- a/ceremony/src/lib/components/Terminal/Authenticate.svelte +++ b/ceremony/src/lib/components/Terminal/Authenticate.svelte @@ -45,5 +45,5 @@ onDestroy(() => { data={[{text: "GitHub", action: "github"}, {text: "Google", action: "google"}]} trigger={(value: 'github' | 'google') => trigger(value)} />
- By signing in, I acknowledge that my public GPG key and signature will be permanently publicly available as it is cryptographically part of the MPC ceremony data. I am aware that my GPG key contains the email address I use to sign in. + By signing in, I acknowledge that my GPG key and signature will be permanently publicly available as it is cryptographically part of the MPC ceremony data. I am aware that my GPG key contains the email address I use to sign in. {/if} \ No newline at end of file diff --git a/ceremony/src/lib/components/Terminal/Waitlist.svelte b/ceremony/src/lib/components/Terminal/Waitlist.svelte index d24775b9d9..9e5064e1ef 100644 --- a/ceremony/src/lib/components/Terminal/Waitlist.svelte +++ b/ceremony/src/lib/components/Terminal/Waitlist.svelte @@ -10,7 +10,7 @@ onMount(async () => { terminal.setStep(3) terminal.updateHistory({ text: "You're on the waitlist" }) terminal.updateHistory({ - text: `When the ceremony opens to the public, you will be ${contributor.waitListPosition}${getNumberSuffix(contributor.waitListPosition)} in the public queue.` + text: `When the ceremony opens to the public, you will get priority in the queue.` }) terminal.updateHistory({ text: "You will receive an email 12-18 hours before the public phase begins." From 80f6939a36ea957c3b3b05720a39e78342a91af5 Mon Sep 17 00:00:00 2001 From: Lukas Date: Sat, 28 Sep 2024 12:29:26 +0200 Subject: [PATCH 2/2] fix(ceremony): no need to fetch this --- ceremony/src/lib/state/contributor.svelte.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ceremony/src/lib/state/contributor.svelte.ts b/ceremony/src/lib/state/contributor.svelte.ts index 5156f6e8ae..6f17ea99e4 100644 --- a/ceremony/src/lib/state/contributor.svelte.ts +++ b/ceremony/src/lib/state/contributor.svelte.ts @@ -109,7 +109,6 @@ export class Contributor { if (this.userId === undefined && userId) { this.userId = userId this.loggedIn = true - this.checkWaitListPosition() this.checkUserWallet(userId) this.checkCurrentUserState(userId) this.startPolling()