Skip to content

๐ŸŸ  9. Magic Numbers Without Explanationย #162

@juancolchete

Description

@juancolchete

Location: templates/add_area.html:481, 486

if(prefilledCommunityData?.lightningTips.length > 10){
if(prefilledCommunityData?.description.length > 10){

Problem: Hardcoded 10 with no explanation. Why 10?

Fix:

const MIN_FIELD_LENGTH = 10  // Minimum length to consider field as having real data

if(prefilledCommunityData?.lightningTips?.length > MIN_FIELD_LENGTH){
    // ...
}

Note: These commit messages say "validate" but this isn't validation - it's just filtering. See next section for proper approach.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions