Skip to content

Commit

Permalink
fix: remove extra debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ImLunaHey committed Jan 9, 2025
1 parent 12b58fe commit 6e3bf47
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/routes/messages/$convoId.lazy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import { SendIcon } from 'lucide-react';
import { useSendMessage } from '@/lib/bluesky/hooks/useSendMessage';
import { useQueryClient } from '@tanstack/react-query';
import { StickyHeader } from '@/components/sticky-header';
import { Debug } from '@/components/ui/Debug';

function Message({ message }: { message: BSkyMessageWithReactions }) {
const session = useBlueskyStore((state) => state.session);
Expand Down Expand Up @@ -111,7 +110,6 @@ function Messages() {
const { convoId } = Route.useParams();
const session = useBlueskyStore((state) => state.session);
const { data, isLoading, isError, error } = useConversation({ convoId });
const embed = Route.useSearch().embed;
const messages = data?.messages;
const convo = data?.convo;
const otherMember = convo?.members.find((member) => member.did !== session?.did);
Expand Down Expand Up @@ -174,7 +172,6 @@ function Messages() {
}}
/>
</div>
<Debug value={embed} />
<ReplyBox />
</div>
</>
Expand Down

0 comments on commit 6e3bf47

Please sign in to comment.