@@ -29,9 +29,9 @@ export default function Inspect() {
2929 const [ isModalOpen , setIsModalOpen ] = useState ( false ) ;
3030 const shouldFetch = session ?. user ?. id ? `/api/requests?id=${ session . user . id } ` : null ;
3131 const { data, error } = useSWR < RequestData [ ] > ( shouldFetch , fetcher , { refreshInterval : 3000 } ) ;
32- const { data : repo } = useSWR ( 'https://api.github.com/repos/erickmanovei /webhookinspector' , fetcher ) ;
32+ const { data : repo } = useSWR ( 'https://api.github.com/repos/ericknilson /webhookinspector' , fetcher ) ;
3333 const { data : contributors } = useSWR (
34- 'https://api.github.com/repos/erickmanovei /webhookinspector/contributors' ,
34+ 'https://api.github.com/repos/ericknilson /webhookinspector/contributors' ,
3535 fetcher
3636 ) ;
3737 const [ selectedRequest , setSelectedRequest ] = useState < RequestData | null > ( null ) ;
@@ -120,7 +120,7 @@ export default function Inspect() {
120120 < div className = "p-4 bg-gray-900 text-zinc-400 rounded mt-10 hidden md:block" >
121121 < div
122122 className = 'flex p-2 rounded items-center justify-center gap-2 mb-4 cursor-pointer hover:bg-gray-800'
123- onClick = { ( ) => window . open ( 'https://github.com/erickmanovei /webhookinspector' , '_blank' ) }
123+ onClick = { ( ) => window . open ( 'https://github.com/ericknilson /webhookinspector' , '_blank' ) }
124124 >
125125 < GitHubIcon />
126126 < h1 className = 'text-white font-bold' > Github</ h1 >
@@ -183,7 +183,7 @@ export default function Inspect() {
183183 < div className = "p-4 bg-gray-900 text-zinc-400 rounded mt-10 block md:hidden" >
184184 < div
185185 className = 'flex p-2 rounded items-center justify-center gap-2 mb-4 cursor-pointer hover:bg-gray-800'
186- onClick = { ( ) => window . open ( 'https://github.com/erickmanovei /webhookinspector' , '_blank' ) }
186+ onClick = { ( ) => window . open ( 'https://github.com/ericknilson /webhookinspector' , '_blank' ) }
187187 >
188188 < GitHubIcon />
189189 < h1 className = 'text-white font-bold' > Github</ h1 >
0 commit comments