summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorSam Nystrom <sam@samnystrom.dev>2024-03-10 16:23:07 -0400
committerSam Nystrom <sam@samnystrom.dev>2024-03-10 16:23:07 -0400
commit367fe51e7e1c55e39299e2e667ca4f399a474019 (patch)
tree7529a1ba2f758a54e2bca845af36536e637545ed /src/index.tsx
parentb95a2af981c903489631d7a9a3aa04cab8b18c5a (diff)
cleanup
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/index.tsx b/src/index.tsx
index ea83e21..bff0b70 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -1,10 +1,8 @@
import { render } from 'preact';
-import { useErrorBoundary } from 'preact/hooks';
import { NodeEditor } from './NodeEditor.tsx';
import './index.css';
export const App = () => {
- const [error] = useErrorBoundary(error => alert(error));
return (
<NodeEditor />
);