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 Dec 26, 2023
1 parent 48315b4 commit 8741865
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 8741865

Please sign in to comment.