Skip to content

Commit

Permalink
Merge pull request ItzyBitzySpider#13 from samuzora/main
Browse files Browse the repository at this point in the history
fix: resolved various errors during build/lint
  • Loading branch information
beanbeah authored Nov 1, 2022
2 parents 6302ad9 + a17061d commit a6deaf1
Show file tree
Hide file tree
Showing 13 changed files with 4,457 additions and 243 deletions.
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "next/core-web-vitals",
"rules": {
"react/no-children-prop": "off"
}
}
3 changes: 2 additions & 1 deletion components/unauthorized.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import Link from "next/link"
export default function Unauthorized() {
return (
<div className='txt-center h-100 align-items-center row'>
<div>
<h1>Unauthorized</h1>
<h3>
Please sign in <a href='/login'>here</a>
Please sign in <Link href='/login'>here</Link>
</h3>
</div>
</div>
Expand Down
Loading

0 comments on commit a6deaf1

Please sign in to comment.