Update pages/settings/teams.tsx

Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
pull/333/head
Mihai C 2021-07-02 13:32:27 +03:00 committed by GitHub
parent 2af9ed55a7
commit b15ef1d8b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ export default function Teams() {
}
// Export the `session` prop to use sessions with Server Side Rendering
export const getServerSideProps: GetServerSideProps<{session: Session | null}> = async (context) => {
export const getServerSideProps: GetServerSideProps<{ session: Session | null }> = async (context) => {
const session = await getSession(context);
if (!session) {
return { redirect: { permanent: false, destination: '/auth/login' } };