diff options
Diffstat (limited to 'pages/index.tsx')
-rw-r--r-- | pages/index.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pages/index.tsx b/pages/index.tsx index 7c943cf..90d9686 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -151,7 +151,6 @@ export function GraphPage() { case 'follow': return setEmacsNodeId(message.data.id) case 'zoom': { - console.log(message) const links = linksByNodeIdRef.current[message.data.id!] ?? [] const nodes = Object.fromEntries( [ @@ -443,7 +442,6 @@ export const Graph = forwardRef(function (props: GraphProps, graphRef: any) { const themeContext = useContext<ThemeContextProps>(ThemeContext) const getThemeColor = (name: string) => { - console.log(name) if (!theme) { return } |