chore: lint

This commit is contained in:
karishmas6
2024-08-04 03:42:21 +05:30
parent 79b8ad9952
commit cd7c8af20f

View File

@@ -20,7 +20,6 @@ interface AttributeOption {
value: string; value: string;
} }
const getAttributeOptions = (tagName: string): AttributeOption[] => { const getAttributeOptions = (tagName: string): AttributeOption[] => {
switch (tagName.toLowerCase()) { switch (tagName.toLowerCase()) {
case 'a': case 'a':
@@ -38,7 +37,6 @@ const getAttributeOptions = (tagName: string): AttributeOption[] => {
} }
}; };
export const BrowserWindow = () => { export const BrowserWindow = () => {
const [canvasRef, setCanvasReference] = useState<React.RefObject<HTMLCanvasElement> | undefined>(undefined); const [canvasRef, setCanvasReference] = useState<React.RefObject<HTMLCanvasElement> | undefined>(undefined);
const [screenShot, setScreenShot] = useState<string>(""); const [screenShot, setScreenShot] = useState<string>("");
@@ -47,7 +45,6 @@ export const BrowserWindow = () => {
const [attributeOptions, setAttributeOptions] = useState<AttributeOption[]>([]); const [attributeOptions, setAttributeOptions] = useState<AttributeOption[]>([]);
const [selectedElement, setSelectedElement] = useState<{ selector: string, info: ElementInfo | null } | null>(null); const [selectedElement, setSelectedElement] = useState<{ selector: string, info: ElementInfo | null } | null>(null);
const { socket } = useSocketStore(); const { socket } = useSocketStore();
const { width, height } = useBrowserDimensionsStore(); const { width, height } = useBrowserDimensionsStore();
const { getText, getScreenshot } = useActionContext(); const { getText, getScreenshot } = useActionContext();
@@ -156,8 +153,6 @@ export const BrowserWindow = () => {
setShowAttributeModal(false); setShowAttributeModal(false);
}; };
return ( return (
<div onClick={handleClick}> <div onClick={handleClick}>
{ {