Skip to content

Commit

Permalink
feat(version) 🎉 release 0.16.9 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Oct 24, 2023
1 parent 98daa1d commit 3b41c97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<img src="https://img.shields.io/badge/nodejs-18.17.1-dgreen" alt="node">
</a>
<a href="https://github.com/robolaunch/ui/releases">
<img src="https://img.shields.io/badge/release-v0.16.8-red" alt="release">
<img src="https://img.shields.io/badge/release-v0.16.9-red" alt="release">
</a>
<a href="#">
<img src="https://img.shields.io/badge/language-typescript-blue" alt="language">
Expand Down
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.16.8",
"version": "0.16.9",
"private": true,
"scripts": {
"start": "react-scripts start",
Expand Down
22 changes: 2 additions & 20 deletions src/components/CreateForms/CreateRobotFormStep1.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import React, { Fragment, ReactElement, useEffect, useState } from "react";
import {
envAdrinIntegration,
envOnPremiseRobot,
} from "../../helpers/envProvider";
import { envOnPremiseRobot } from "../../helpers/envProvider";
import CreateRobotRosDistrobutions from "../CreateRobotRosDistrobutions/CreateRobotRosDistrobutions";
import CreateRobotFormCancelButton from "../CreateRobotFormCancelButton/CreateRobotFormCancelButton";
import { CreateRobotFormStep1Validations } from "../../validations/RobotsValidations";
import CreateRobotFormLoader from "../CreateRobotFormLoader/CreateRobotFormLoader";
import CreateRobotStorage from "../CreateRobotStorage/CreateRobotStorage";
import { addPhysicalInstanceToFleet } from "../../toolkit/InstanceSlice";
import AdrinNetworkTypes from "../AdrinNetworkTypes/AdrinNetworkTypes";
import CreateRobotTypes from "../CreateRobotTypes/CreateRobotTypes";
import { getGuideItem } from "../../functions/handleGuide";
import useCreateRobot from "../../hooks/useCreateRobot";
Expand Down Expand Up @@ -191,25 +187,11 @@ export default function CreateRobotFormStep1({
<Seperator />

{/* RobotType */}
{!envAdrinIntegration && (
<CreateRobotTypes formik={formik} isImportRobot={isImportRobot} />
)}
<CreateRobotTypes formik={formik} isImportRobot={isImportRobot} />
{/* RobotType */}

<Seperator />

{/* Adrin Network Types */}
{envAdrinIntegration && (
<Fragment>
<AdrinNetworkTypes
formik={formik}
isImportRobot={isImportRobot}
/>
<Seperator />
</Fragment>
)}
{/* Adrin Network Types */}

{/* ROS Distro */}
<CreateRobotRosDistrobutions
formik={formik}
Expand Down

0 comments on commit 3b41c97

Please sign in to comment.