Fix code format
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Siklos 2022-08-11 17:02:32 +02:00
parent 2ac6e95a13
commit 4a7f03fba6
5 changed files with 2 additions and 6 deletions

View file

@ -6,7 +6,6 @@ import { findContainerById } from '../../utils/itertools';
import { getCurrentHistory } from './Editor';
import { SizePointer } from '../../Interfaces/SizePointer';
import Properties from '../../Interfaces/Properties';
import { MinusCircleIcon } from '@heroicons/react/outline';
/**
* Select a container

View file

@ -1,4 +1,4 @@
import { HistoryState } from "../../Interfaces/HistoryState";
import { HistoryState } from '../../Interfaces/HistoryState';
import { Configuration } from '../../Interfaces/Configuration';
import { getCircularReplacer } from '../../utils/saveload';
import { ID } from '../SVG/SVG';

View file

@ -9,7 +9,6 @@ import { MenuItem } from '../Menu/MenuItem';
import { handleDragLeave, handleDragOver, handleLeftClick, handleOnDrop, handleRightClick } from './MouseEventHandlers';
import { Point } from '../../Interfaces/Point';
interface IElementsSidebarProps {
MainContainer: IContainerModel
isOpen: boolean
@ -108,7 +107,7 @@ export const ElementsSidebar: React.FC<IElementsSidebarProps> = (props: IElement
onLeftClick
);
};
}, []);
});
// Render
let isOpenClasses = '-right-64';

View file

@ -1,4 +1,3 @@
import { transform } from 'framer-motion';
import * as React from 'react';
import { XPositionReference } from '../../../Enums/XPositionReference';
import { IContainerModel } from '../../../Interfaces/ContainerModel';

View file

@ -83,4 +83,3 @@ export const Dimension: React.FC<IDimensionProps> = (props: IDimensionProps) =>
</g>
);
};