Skip to content

Commit 21ee13f

Browse files
committed
updated width condition
1 parent 6a0bda8 commit 21ee13f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GoInfoGame/GoInfoGame/quests/SidewalkWidth/SideWalkWidthForm.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ struct SideWalkWidthForm: View, QuestForm {
5454
}.padding()
5555
.frame(maxWidth: .infinity, maxHeight: .infinity)
5656
.alert(isPresented: $isConfirmAlert) {
57-
if !(feet >= 4 && feet <= 8) {
57+
if !(feet >= 1 && feet <= 12) {
5858
return Alert(
5959
title: Text(LocalizedStrings.questGenericConfirmationTitle.localized),
6060
message: Text(LocalizedStrings.questRoadWidthUnusualInputConfirmation.localized),

0 commit comments

Comments
 (0)