diff --git a/src/UI/Reviews/ReviewForm.svelte b/src/UI/Reviews/ReviewForm.svelte index d64d6e182..2224d481d 100644 --- a/src/UI/Reviews/ReviewForm.svelte +++ b/src/UI/Reviews/ReviewForm.svelte @@ -39,7 +39,7 @@ let connection = state.osmConnection let hasError: Store = opinion.mapD((op) => { - const tooLong = op.length > FeatureReviews.REVIEW_OPINION_MAX_LENGTH + const tooLong = op.length >= FeatureReviews.REVIEW_OPINION_MAX_LENGTH if (tooLong) { return "too_long" }