Add locale support (#228)

This commit is contained in:
Luke Vella 2022-07-21 12:12:35 +01:00 committed by GitHub
parent 800af20132
commit 416a17c5b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
47 changed files with 967 additions and 467 deletions

View file

@ -32,7 +32,13 @@ export function withSessionSsr(handler: GetServerSideProps) {
req.session.user = await createGuestUser();
await req.session.save();
}
return await handler(context);
const res = await handler(context);
if ("props" in res) {
return { ...res, props: { ...res.props, user: req.session.user } };
}
return res;
}, sessionOptions);
}