Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hpcreery committed Apr 4, 2024
1 parent 2a3873f commit 6209b64
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 1,305 deletions.
5 changes: 3 additions & 2 deletions src/renderer/src/components/sidebar/LayerListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { notifications } from '@mantine/notifications'
import chroma from 'chroma-js'
import { useGesture } from '@use-gesture/react'
import { animated, useSpring } from '@react-spring/web'
import { TRendererLayer } from '../../old-renderer/types'
// import { TRendererLayer } from '../../old-renderer/types'
import type Layer from '@src/renderer/layer'
import { RenderEngine } from '@src/renderer'
import FeatureHistogramModal, { FeatureHistogramModalRef } from '../histogram/FeatureHistogramModal'
import { UploadFile } from '../LayersSidebar'
Expand Down Expand Up @@ -35,7 +36,7 @@ export default function LayerListItem(props: LayerListItemProps): JSX.Element |
const { showContextMenu } = useContextMenu()
const theme = useMantineTheme()
const { renderEngine, file, actions } = props
const layer: Pick<TRendererLayer, 'name' | 'uid'> = {
const layer: Pick<Layer, 'name' | 'uid'> = {
name: file.name,
uid: file.uid
}
Expand Down
19 changes: 0 additions & 19 deletions src/renderer/src/contexts/GerberApp.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/renderer/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function Main(): JSX.Element | null {
defaultColorScheme="dark"
theme={theme}
>
<ContextMenuProvider zIndex={1000} shadow="md" borderRadius="md" mod={['transparent']}>
<ContextMenuProvider zIndex={1000} shadow="md" borderRadius="md">
<Notifications />
<App />
{/* <REGLApp /> */}
Expand Down
222 changes: 0 additions & 222 deletions src/renderer/src/renderer/modules/conic/Conic.ts

This file was deleted.

Loading

0 comments on commit 6209b64

Please sign in to comment.