diff --git a/src/components/browser/BrowserTabs.tsx b/src/components/browser/BrowserTabs.tsx index 26d33601..f34fda37 100644 --- a/src/components/browser/BrowserTabs.tsx +++ b/src/components/browser/BrowserTabs.tsx @@ -1,6 +1,5 @@ import * as React from 'react'; import { Box, IconButton, Tab, Tabs } from "@mui/material"; -import { useBrowserDimensionsStore } from "../../context/browserDimensions"; import { Close } from "@mui/icons-material"; import { useThemeMode } from '../../context/theme-provider'; @@ -36,7 +35,7 @@ export const BrowserTabs = ( overflow: 'auto', alignItems: 'center', }}> - {/* Synced border color */} + ` margin-left: 10px; diff --git a/src/helpers/coordinateMapper.ts b/src/helpers/coordinateMapper.ts index f53f89d5..0331e966 100644 --- a/src/helpers/coordinateMapper.ts +++ b/src/helpers/coordinateMapper.ts @@ -1,4 +1,3 @@ -// coordinateMapper.ts import { BROWSER_DEFAULT_HEIGHT, BROWSER_DEFAULT_WIDTH } from "../constants/const"; import { getResponsiveDimensions } from "./dimensionUtils"; diff --git a/src/helpers/inputHelpers.ts b/src/helpers/inputHelpers.ts index 4d81dc59..19ccfb13 100644 --- a/src/helpers/inputHelpers.ts +++ b/src/helpers/inputHelpers.ts @@ -1,8 +1,6 @@ import { ONE_PERCENT_OF_VIEWPORT_H, ONE_PERCENT_OF_VIEWPORT_W, - VIEWPORT_W, - VIEWPORT_H, } from "../constants/const"; import { Coordinates } from '../components/recorder/canvas';