Skip to content

Commit

Permalink
fix(graph): correct default option
Browse files Browse the repository at this point in the history
  • Loading branch information
ahonestla committed Jan 3, 2024
1 parent 6a13da0 commit ea29cba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export default function Home() {
<Row gutters>
<Col>
<TagInput
label={`${formType.charAt(0).toUpperCase() + formType.slice(1) }s`}
label={`${formType.charAt(0).toUpperCase() + formType.slice(1)}s`}
hint='Validate by pressing "Return" key'
tags={formQueries}
onTagsChange={(tags) => setFormQueries(tags)}
Expand Down

0 comments on commit ea29cba

Please sign in to comment.