Skip to content

Commit 368e03e

Browse files
committed
fix(broker-configs): remove empty lines to satisfy the linter
1 parent dcf4afb commit 368e03e

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

frontend/src/components/Brokers/Broker/Configs/TableComponents/InputCell/InputCellViewMode.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import ClusterContext from 'components/contexts/ClusterContext';
88

99
import * as S from './styled';
1010

11-
1211
interface InputCellViewModeProps {
1312
value: string;
1413
unit: ConfigUnit | undefined;

frontend/src/components/Brokers/Broker/Configs/TableComponents/InputCell/index.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,7 @@ export interface InputCellProps
1919
const InputCell: FC<InputCellProps> = ({ row, onUpdate }) => {
2020
const [isEdit, setIsEdit] = useState(false);
2121
const confirm = useConfirm();
22-
const {
23-
name,
24-
source,
25-
value: initialValue,
26-
isSensitive,
27-
} = row.original;
22+
const { name, source, value: initialValue, isSensitive } = row.original;
2823

2924
const handleSave = (newValue: string) => {
3025
if (newValue !== initialValue) {

0 commit comments

Comments
 (0)