sub-query via query trace

This commit is contained in:
2023-05-24 17:17:17 +01:00
parent 8f7a9a1327
commit 7b151e1b17
7 changed files with 151 additions and 104 deletions

View File

@ -31,6 +31,7 @@ import NostrLinkHandler from "Pages/NostrLinkHandler";
import Thread from "Element/Thread";
import { SubscribeRoutes } from "Pages/subscribe";
import ZapPoolPage from "Pages/ZapPool";
import DebugPage from "Pages/Debug";
// @ts-ignore
window.__webpack_nonce__ = "ZmlhdGphZiBzYWlkIHNub3J0LnNvY2lhbCBpcyBwcmV0dHkgZ29vZCwgd2UgbWFkZSBpdCE=";
@ -99,6 +100,10 @@ export const router = createBrowserRouter([
...NewUserRoutes,
...WalletRoutes,
...SubscribeRoutes,
{
path: "/debug",
element: <DebugPage />,
},
{
path: "/*",
element: <NostrLinkHandler />,