From 2c5d38013f1151891ecb7af3f35486e250157895 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 27 May 2025 23:48:03 +0200 Subject: [PATCH] Switch to Ditto relay, don't include intentional error in App.tsx lol --- src/App.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index d520bd9..a7afb31 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,11 +8,10 @@ import { TooltipProvider } from "@/components/ui/tooltip"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import { NostrLoginProvider } from '@nostrify/react/login'; import AppRouter from './AppRouter'; -import { useLocation } from 'react-router-dom'; // DO NOT MODIFY THIS RELAY LIST UNLESS EXPLICITLY REQUESTED const defaultRelays = [ - 'wss://relay.nostr.band', + 'wss://ditto.pub/relay', // DO NOT ADD ANY RELAY WITHOUT FIRST USING A TOOL TO VERIFY IT IS ONLINE AND FUNCTIONAL // IF YOU CANNOT VERIFY A RELAY IS ONLINE AND FUNCTIONAL, DO NOT ADD IT HERE ]; @@ -28,8 +27,6 @@ const queryClient = new QueryClient({ }); export function App() { - const location = useLocation(); - return (