Skip to content

Commit

Permalink
feat(version): release 0.36.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Feb 23, 2024
1 parent f34fa56 commit f1b252d
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.36.0",
"version": "0.36.1",
"private": true,
"scripts": {
"dev": "GENERATE_SOURCEMAP=false react-scripts start",
Expand Down
1 change: 0 additions & 1 deletion src/components/CFRepositoryName/CFRepositoryName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export default function CFRepositoryName({
inputProps={formik.getFieldProps(
`workspaces.${workspaceIndex}.robotRepositories.${repositoryIndex}.name`,
)}
placeholder="cloudy"
disabled={disabled}
inputError={
// @ts-ignore
Expand Down
1 change: 0 additions & 1 deletion src/components/CFRepositoryURL/CFRepositoryURL.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export default function CFRepositoryURL({
inputProps={formik.getFieldProps(
`workspaces.${workspaceIndex}.robotRepositories.${repositoryIndex}.url`,
)}
placeholder="https://github.com/robolaunch/cloudy"
disabled={disabled}
inputError={
//prettier-ignore
Expand Down
1 change: 0 additions & 1 deletion src/components/CFWorkspaceName/CFWorkspaceName.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export default function CFWorkspaceName({
dataTut="create-robot-step2-workspace-name"
labelName="Workspace Name:"
labelInfoTip="You can specify the name of your workspace here."
placeholder="ros2_ws"
inputProps={formik.getFieldProps(`workspaces.${workspaceIndex}.name`)}
classNameContainer="w-full"
disabled={formik.isSubmitting}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ export default function CreateFormBrachInput({
labelName="Branch Name:"
labelInfoTip="Type a repository branch name."
disabled={disabled}
placeholder="main"
inputProps={formik.getFieldProps(
`workspaces.${workspaceIndex}.robotRepositories.${repositoryIndex}.branch`,
)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/CreateForms/CFStep1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default function CFStep1({ isImportRobot }: ICFStep1): ReactElement {
<CFSection>
<div className="flex items-center gap-4">
<CFBridgeToggle formik={formik} />
<CFGPUToggle formik={formik} isImportRobot={isImportRobot} />
{/* <CFGPUToggle formik={formik} isImportRobot={isImportRobot} /> */}
</div>
<Seperator />
</CFSection>
Expand Down

0 comments on commit f1b252d

Please sign in to comment.