Skip to content

Commit

Permalink
fix(ceremony): text changes (#3037)
Browse files Browse the repository at this point in the history
  • Loading branch information
Swepool authored Sep 28, 2024
2 parents 50ca13e + 80f6939 commit 4c24174
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ceremony/src/lib/components/Terminal/Authenticate.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ onDestroy(() => {
data={[{text: "GitHub", action: "github"}, {text: "Google", action: "google"}]}
trigger={(value: 'github' | 'google') => trigger(value)} />
<Print><br></Print>
<Print class="uppercase !text-[#FD6363]">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.</Print>
<Print class="!text-[#FD6363]">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.</Print>
{/if}
2 changes: 1 addition & 1 deletion ceremony/src/lib/components/Terminal/Waitlist.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
1 change: 0 additions & 1 deletion ceremony/src/lib/state/contributor.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 4c24174

Please sign in to comment.