fix: rollback nostr-tools version

This commit is contained in:
Shusui MOYATANI
2023-03-07 12:06:43 +09:00
parent cf17f48699
commit bcbd9242f3
3 changed files with 31 additions and 31 deletions

View File

@@ -20,8 +20,8 @@ const queryClient = new QueryClient({});
const App: Component = () => (
<QueryClientProvider client={queryClient}>
<Routes>
<Route path="/" element={() => <Home />} />
<Route path="/hello" element={() => <Hello />} />
<Route path="/" element={() => <Home />} />
<Route path="/*" element={() => <NotFound />} />
</Routes>
</QueryClientProvider>