Skip to content

Commit

Permalink
update error string
Browse files Browse the repository at this point in the history
  • Loading branch information
jtimpe committed Jun 12, 2024
1 parent 2654f3c commit c1e2b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdrs-frontend/src/components/STTComboBox/STTComboBox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function STTComboBox({ selectStt, selectedStt, handleBlur, error, sttType }) {
? `${toTitleCase(sttType)}*`
: 'Associated State, Tribe, or Territory*'
}
error={error ? 'A state, tribe, or territory is required' : undefined}
error={error ? `A ${sttType} is required` : undefined}
handleSelect={selectStt}
selected={selectedStt}
handleBlur={handleBlur}
Expand Down

0 comments on commit c1e2b70

Please sign in to comment.