Skip to content

Commit

Permalink
fix: fix various typo (#249)
Browse files Browse the repository at this point in the history
Because

- #247 
- #246
- #245

This commit

- Fix state label typo (close #245)
- Fix typo on onboarding form (close #246)
  • Loading branch information
EiffelFly authored Aug 29, 2022
1 parent 2889c1c commit d60f860
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,9 @@ const CreateNewModelFlow: FC = () => {
error={errors.modelInstanceId || null}
additionalOnChangeCb={modelInstanceOnChangeCb}
required={true}
description={"Setup Guide"}
description={
"<a href='https://www.instill.tech/docs/core-concepts/model#model-instance'>Setup Guide</a>"
}
/>
<div className="flex flex-row">
<BasicProgressMessageBox
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/StateLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const StateLabel = ({
default:
textColor = "text-instillGrey70";
bgColor = "bg-instillGrey05";
stateLabelName = "Not specific";
stateLabelName = "Unspecified";
}

return (
Expand Down
6 changes: 3 additions & 3 deletions src/lib/instill/mgmt/mocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ import { SingleSelectOption } from "@instill-ai/design-system";

export const mockMgmtRoles: SingleSelectOption[] = [
{
label: "Manager (who make decisions)",
label: "Manager (who makes decisions)",
value: "Manager",
},
{
label:
"AI Researcher (who devises ML algorithms, train and evaluate models)",
"AI Researcher (who devises ML algorithms, trains and evaluates models)",
value: "AI Researcher",
},
{
label:
"AI Engineer (who prepare dataset and make models delivered by AI Researchers production-ready)",
"AI Engineer (who prepares dataset and makes models delivered by AI Researchers production-ready)",
value: "AI Engineer",
},
{
Expand Down

0 comments on commit d60f860

Please sign in to comment.