Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
marstamm committed Sep 26, 2024
1 parent 170409a commit 556effb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion client/src/app/tabs/bpmn/BpmnTab.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* except in compliance with the MIT License.
*/

import BpmnEditor from './BpmnEditor';
// import BpmnEditor from './BpmnEditor';
import XMLEditor from '../xml';

import { createTab } from '../EditorTab';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { Fill } from '../../../../slot-fill';
import { Modal } from '../../../../../shared/ui';

import './RobotOutputTab.less';
import { Button, CodeSnippet, CodeSnippetSkeleton, Column, Grid, Heading, Layer, Section, Stack, TextInput, Tile, Form, TextArea, FlexGrid } from '@carbon/react';
import { Button, CodeSnippet, CodeSnippetSkeleton, Column, Grid, Heading, Layer, Section, Stack, TextInput, Tile, Form, TextArea } from '@carbon/react';

import './carbon.scss';
import { useLocalState } from '../useLocalState';
Expand Down
14 changes: 7 additions & 7 deletions client/src/app/tabs/robot/BottomPanel/Run/RunForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@ const validateEndpointURL = async (value) => {
}
};

const validateVariables = async (value) => {
try {
JSON.parse(value);
} catch (error) {
return 'Invalid JSON';
}
};
// const validateVariables = async (value) => {
// try {
// JSON.parse(value);
// } catch (error) {
// return 'Invalid JSON';
// }
// };
2 changes: 1 addition & 1 deletion client/src/app/tabs/robot/BottomPanel/Run/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* except in compliance with the MIT License.
*/

import React, { useState } from 'react';
import React from 'react';
import RunButton from './RunButton';
import RobotOutputTab from './RobotOutputTab';

Expand Down

0 comments on commit 556effb

Please sign in to comment.