File tree 4 files changed +6
-3
lines changed
4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ export class OasstApiClient {
152
152
* Returns the `BackendUser` associated with `user_id`
153
153
*/
154
154
async fetch_user ( user_id : string ) : Promise < BackendUser > {
155
- return this . get ( `/api/v1/users/users/ ${ user_id } ` ) ;
155
+ return this . get ( `/api/v1/users/${ user_id } ` ) ;
156
156
}
157
157
158
158
/**
Original file line number Diff line number Diff line change 1
1
import { useColorMode } from "@chakra-ui/react" ;
2
2
import Head from "next/head" ;
3
3
import { getCsrfToken , getProviders } from "next-auth/react" ;
4
+ import { serverSideTranslations } from "next-i18next/serverSideTranslations" ;
4
5
5
6
export default function Verify ( ) {
6
7
const { colorMode } = useColorMode ( ) ;
@@ -21,14 +22,14 @@ export default function Verify() {
21
22
) ;
22
23
}
23
24
24
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
25
- export async function getServerSideProps ( context ) {
25
+ export async function getServerSideProps ( { locale } ) {
26
26
const csrfToken = await getCsrfToken ( ) ;
27
27
const providers = await getProviders ( ) ;
28
28
return {
29
29
props : {
30
30
csrfToken,
31
31
providers,
32
+ ...( await serverSideTranslations ( locale , [ "common" ] ) ) ,
32
33
} ,
33
34
} ;
34
35
}
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import Head from "next/head";
2
2
import { TaskOption } from "src/components/Dashboard" ;
3
3
import { getDashboardLayout } from "src/components/Layout" ;
4
4
import { TaskCategory } from "src/components/Tasks/TaskTypes" ;
5
+ export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props" ;
5
6
6
7
const AllTasks = ( ) => {
7
8
return (
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { getDashboardLayout } from "src/components/Layout";
4
4
import { LoadingScreen } from "src/components/Loading/LoadingScreen" ;
5
5
import { Task } from "src/components/Tasks/Task" ;
6
6
import { useGenericTaskAPI } from "src/hooks/tasks/useGenericTaskAPI" ;
7
+ export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props" ;
7
8
import { TaskType } from "src/types/Task" ;
8
9
9
10
const RandomTask = ( ) => {
You can’t perform that action at this time.
0 commit comments