This commit is contained in:
Michael Quigley 2023-01-11 15:10:26 -05:00
parent 630cc274af
commit 37676a0176
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62
2 changed files with 2 additions and 3 deletions

View File

@ -105,9 +105,9 @@ func newInviteTui() inviteTui {
m.helpStyle = m.blurredStyle.Copy()
m.focusedButton = m.focusedStyle.Copy().Render("[ Submit ]")
m.blurredButton = fmt.Sprintf("[ %v ]", m.blurredStyle.Render("Submit"))
m.msgOk = m.noStyle.Render("Enter and confirm your email address...")
m.msgOk = m.noStyle.Render("enter and confirm your email address...")
m.msg = m.msgOk
m.msgMismatch = m.errorStyle.Render("Email is invalid or does not match confirmation...")
m.msgMismatch = m.errorStyle.Render("email is invalid or does not match confirmation...")
var t textinput.Model
for i := range m.inputs {

View File

@ -1 +0,0 @@
package main