Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
columbia-facts committed Apr 28, 2024
1 parent 1622358 commit 187456f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build": "vite build --debug --base ./",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"generate-js": "npx tsc --jsx preserve -t es2020 --outDir srcJs --noEmit false && npx prettier srcJs --write && npx shx cp src/*.css srcJs"
Expand Down
1 change: 0 additions & 1 deletion src/edges/customEdge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ type CustomEdgeData = {
onClick?: () => void;
};


const CustomEdge: FC<EdgeProps<CustomEdgeData>> = ({
id,
sourceX,
Expand Down
4 changes: 2 additions & 2 deletions src/edges/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Edge, EdgeTypes } from "reactflow";
import CustomEdge from "./CustomEdge.tsx";
import CustomEdgeStartEnd from "./CustomEdgeStartEnd.tsx";
import CustomEdge from "./CustomEdge";
import CustomEdgeStartEnd from "./CustomEdgeStartEnd";

export const edgeTypes: EdgeTypes = {
custom: CustomEdge,
Expand Down

0 comments on commit 187456f

Please sign in to comment.