Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
pankaj-peerdb committed Dec 18, 2023
1 parent cefe556 commit 83d8f02
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions ui/app/peers/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ import useSWR from 'swr';
const fetcher = (...args: [any]) => fetch(...args).then((res) => res.json());

export default function Peers() {
const {
data: peers,
error,
isLoading,
} = useSWR('/api/peers', fetcher);
const { data: peers, error, isLoading } = useSWR('/api/peers', fetcher);

return (
<LayoutMain alignSelf='flex-start' justifySelf='flex-start' width='full'>
Expand Down

0 comments on commit 83d8f02

Please sign in to comment.