Update src/components/views/voip/PictureInPictureDragger.tsx

Co-authored-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Dariusz Niemczyk
2021-08-03 15:15:30 +02:00
committed by Dariusz Niemczyk
parent 3ab54bce6e
commit 08b27a7c82

View File

@@ -38,7 +38,6 @@ interface IProps {
className?: string;
children: (startMovingEventHandler: (event: React.MouseEvent<Element, MouseEvent>) => void) => React.ReactNode;
draggable: boolean;
app?: IApp;
}
interface IState {
@@ -206,4 +205,3 @@ export class PictureInPictureDragger extends React.Component<IProps, IState> {
);
}
}