From c59bfb3a8767188ec8fb979245548457b41883f4 Mon Sep 17 00:00:00 2001 From: p1n9d3v Date: Wed, 4 Dec 2024 16:53:11 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=90=9E=20Fix(client):=20gridPatternMi?= =?UTF-8?q?nor=20transform=20=EC=86=8D=EC=84=B1=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/GridBackground/patterns/GridPatternMinor.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/client/src/components/GridBackground/patterns/GridPatternMinor.tsx b/apps/client/src/components/GridBackground/patterns/GridPatternMinor.tsx index 0195a8cc..81987491 100644 --- a/apps/client/src/components/GridBackground/patterns/GridPatternMinor.tsx +++ b/apps/client/src/components/GridBackground/patterns/GridPatternMinor.tsx @@ -28,7 +28,6 @@ export default ({ points, dimension }: Props) => { width={width} height={height} patternUnits="userSpaceOnUse" - patternTransform={`scale(${1 / 5})`} > Date: Wed, 4 Dec 2024 16:53:45 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=90=9E=20Fix(client):=20url=20?= =?UTF-8?q?=EC=A3=BC=EC=86=8C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/client/src/CloudGraph.tsx | 1 + apps/client/src/helpers/node.ts | 1 - apps/client/src/main.tsx | 3 ++- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/client/src/CloudGraph.tsx b/apps/client/src/CloudGraph.tsx index e2991ba9..c54376bd 100644 --- a/apps/client/src/CloudGraph.tsx +++ b/apps/client/src/CloudGraph.tsx @@ -6,6 +6,7 @@ import Graph from '@components/Graph'; import GridBackground from '@components/GridBackground'; import Group from '@components/Group'; import Node from '@components/Node'; +import UserNode from '@components/Node/common/UserNode'; import NodeActions from '@components/NodeActions'; import { useEdgeContext } from '@contexts/EdgeContext'; import { useGraphContext } from '@contexts/GraphConetxt'; diff --git a/apps/client/src/helpers/node.ts b/apps/client/src/helpers/node.ts index ef28980a..715e262f 100644 --- a/apps/client/src/helpers/node.ts +++ b/apps/client/src/helpers/node.ts @@ -57,7 +57,6 @@ export const adjustNodePointForDimension = ( return result; }; - export const alignNodePoint = ( node: Node, newPoint: Point, diff --git a/apps/client/src/main.tsx b/apps/client/src/main.tsx index bffa8646..f9b9c67e 100644 --- a/apps/client/src/main.tsx +++ b/apps/client/src/main.tsx @@ -11,9 +11,10 @@ const router = createBrowserRouter([ { element: , loader: rootLoader, + path: '/canvas', children: [ { - path: '/', + index: true, element: , }, { From 1d9865e6746e50aedd18826deaed0207adddac1c Mon Sep 17 00:00:00 2001 From: p1n9d3v Date: Wed, 4 Dec 2024 16:59:40 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=A4=96=20Refactor(client):=20?= =?UTF-8?q?=EB=B9=8C=EB=93=9C=20=EC=97=90=EB=9F=AC=20=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/client/src/CloudGraph.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/client/src/CloudGraph.tsx b/apps/client/src/CloudGraph.tsx index c54376bd..e2991ba9 100644 --- a/apps/client/src/CloudGraph.tsx +++ b/apps/client/src/CloudGraph.tsx @@ -6,7 +6,6 @@ import Graph from '@components/Graph'; import GridBackground from '@components/GridBackground'; import Group from '@components/Group'; import Node from '@components/Node'; -import UserNode from '@components/Node/common/UserNode'; import NodeActions from '@components/NodeActions'; import { useEdgeContext } from '@contexts/EdgeContext'; import { useGraphContext } from '@contexts/GraphConetxt';