Skip to content

Commit

Permalink
Fixed UI consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
clackner-gpa authored Jul 5, 2024
1 parent ed8bbb6 commit 27ff40e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ interface IProps {
}

const DataSetSettingsTab: React.FunctionComponent<IProps> = (props: IProps) => {
const [nameFeedback, setNameFeedback] = React.useState<string>("A DataSet with this name already exists.");
const [nameFeedback, setNameFeedback] = React.useState<string>("A Data Set with this name already exists.");
const dispatch = useAppDispatch();
const dataSets = useAppSelector(SelectDataSets);
const dataSetStatus = useAppSelector(SelectDataSetsStatus);
Expand Down

0 comments on commit 27ff40e

Please sign in to comment.