Skip to content

Commit 690f432

Browse files
committed
fix forgot password
1 parent 2813347 commit 690f432

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

app/src/main/java/neth/iecal/questphone/ui/screens/account/ForgotPasswordScreen.kt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ fun ForgotPasswordScreen(loginStep: MutableState<LoginStep>) {
125125

126126
// Logo or app name
127127
Text(
128-
text = "Blank Phone",
128+
text = "QuestPhone",
129129
style = MaterialTheme.typography.headlineLarge.copy(
130130
fontWeight = FontWeight.Bold
131131
),
@@ -199,8 +199,7 @@ fun ForgotPasswordScreen(loginStep: MutableState<LoginStep>) {
199199
Button(
200200
onClick = handleEmailSubmit,
201201
modifier = Modifier
202-
.fillMaxWidth()
203-
.height(56.dp),
202+
.fillMaxWidth(),
204203
enabled = !isLoading
205204
) {
206205
if (isLoading) {
@@ -209,7 +208,7 @@ fun ForgotPasswordScreen(loginStep: MutableState<LoginStep>) {
209208
color = MaterialTheme.colorScheme.onPrimary
210209
)
211210
} else {
212-
Text("Send Code")
211+
Text("Send Password Reset Link")
213212
}
214213
}
215214
}

0 commit comments

Comments
 (0)