Skip to content

Commit

Permalink
fix(root): remove link to private repository
Browse files Browse the repository at this point in the history
This patch removes the GitHub Issues creation link from the error page.
The repository is currently private, and thus this link will simply 404.
The inclusion of this link also doxes myself... no need to do so
unnecessarily. The only link back to me now could _perhaps_ be a couple
comments in code, but those _should_ be stripped during the build
process, so I should be good.
  • Loading branch information
nicholaschiang committed Aug 7, 2023
1 parent c227321 commit 54abb85
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -263,16 +263,7 @@ function ErrorDisplay({ children }: { children: ReactNode }) {
<Link className='underline' to='/login'>
authenticating
</Link>
. Or smash your keyboard—that can help. You can also{' '}
<a
className='underline'
href='https://github.com/nicholaschiang/site/issues/new'
target='_blank'
rel='noopener noreferrer'
>
file an issue
</a>
.
. Or smash your keyboard—that can help.
</p>
<div className='mt-4 w-0 min-w-full max-w-full overflow-auto bg-gray-100 dark:bg-gray-800'>
<pre className='w-fit p-6 text-xs leading-4'>{children}</pre>
Expand Down

0 comments on commit 54abb85

Please sign in to comment.