Skip to content

Commit 5f3f077

Browse files
authored
Merge pull request LAION-AI#873 from LAION-AI/web-fix-main
Ensuring localization works everywhere and fix an admin view
2 parents 186aabe + e756e5d commit 5f3f077

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

website/src/lib/oasst_api_client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ export class OasstApiClient {
152152
* Returns the `BackendUser` associated with `user_id`
153153
*/
154154
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}`);
156156
}
157157

158158
/**

website/src/pages/auth/verify.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { useColorMode } from "@chakra-ui/react";
22
import Head from "next/head";
33
import { getCsrfToken, getProviders } from "next-auth/react";
4+
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
45

56
export default function Verify() {
67
const { colorMode } = useColorMode();
@@ -21,14 +22,14 @@ export default function Verify() {
2122
);
2223
}
2324

24-
// eslint-disable-next-line @typescript-eslint/no-unused-vars
25-
export async function getServerSideProps(context) {
25+
export async function getServerSideProps({ locale }) {
2626
const csrfToken = await getCsrfToken();
2727
const providers = await getProviders();
2828
return {
2929
props: {
3030
csrfToken,
3131
providers,
32+
...(await serverSideTranslations(locale, ["common"])),
3233
},
3334
};
3435
}

website/src/pages/tasks/all.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import Head from "next/head";
22
import { TaskOption } from "src/components/Dashboard";
33
import { getDashboardLayout } from "src/components/Layout";
44
import { TaskCategory } from "src/components/Tasks/TaskTypes";
5+
export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props";
56

67
const AllTasks = () => {
78
return (

website/src/pages/tasks/random.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { getDashboardLayout } from "src/components/Layout";
44
import { LoadingScreen } from "src/components/Loading/LoadingScreen";
55
import { Task } from "src/components/Tasks/Task";
66
import { useGenericTaskAPI } from "src/hooks/tasks/useGenericTaskAPI";
7+
export { getDefaultStaticProps as getStaticProps } from "src/lib/default_static_props";
78
import { TaskType } from "src/types/Task";
89

910
const RandomTask = () => {

0 commit comments

Comments
 (0)