Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
gpalmer27 committed Jan 30, 2025
1 parent 068be26 commit 7ae617c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion apps/auth-proxy/routes/r/[...auth].ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ export default eventHandler(async (event) =>
clientId: process.env.AUTH_GOOGLE_ID,
clientSecret: process.env.AUTH_GOOGLE_SECRET,
}),
]
],
}),
);
18 changes: 8 additions & 10 deletions apps/web/src/app/(pages)/(dashboard)/redirection/page.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
export default function ErrorPage() {
return (
<div className="flex h-[85vh] flex-col">
<div className="flex h-full items-center justify-center">
<div className="text-center">
<h1 className="text-2xl font-bold text-gray-900">
Authentication Error
</h1>
<p className="text-gray-600">You must log in with husky.neu.edu</p>
<p className="text-gray-600">
Click the sign in button to try again
</p>
<div className="flex h-full items-center justify-center">
<div className="text-center">
<h1 className="text-2xl font-bold text-gray-900">
Authentication Error
</h1>
<p className="text-gray-600">You must log in with husky.neu.edu</p>
<p className="text-gray-600">Click the sign in button to try again</p>
</div>
</div>
</div>
</div>
);
}
2 changes: 1 addition & 1 deletion packages/auth/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json"
},
"include": ["src", "*.ts",],
"include": ["src", "*.ts"],
"exclude": ["node_modules"]
}

0 comments on commit 7ae617c

Please sign in to comment.