Skip to content

Commit

Permalink
chore: fix wrong message id on resend code button (#3067)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-jonas committed Feb 13, 2023
1 parent 033b19c commit e3eb39e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -76,7 +76,7 @@
"messages": [],
"meta": {
"label": {
"id": 1070007,
"id": 1070008,
"text": "Resend code",
"type": "info"
}
Expand Down
Expand Up @@ -63,7 +63,7 @@
"messages": [],
"meta": {
"label": {
"id": 1070007,
"id": 1070008,
"text": "Resend code",
"type": "info"
}
Expand Down
2 changes: 1 addition & 1 deletion text/message_node.go
Expand Up @@ -69,7 +69,7 @@ func NewInfoNodeInputEmail() *Message {

func NewInfoNodeResendOTP() *Message {
return &Message{
ID: InfoNodeLabelEmail,
ID: InfoNodeLabelResendOTP,
Text: "Resend code",
Type: Info,
}
Expand Down

0 comments on commit e3eb39e

Please sign in to comment.