Jelajahi Sumber

remove an unnecessary argument

WNomunomu 1 tahun lalu
induk
melakukan
327584d2de
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      apps/app/src/pages/[[...path]].page.tsx

+ 1 - 1
apps/app/src/pages/[[...path]].page.tsx

@@ -582,7 +582,7 @@ function injectServerConfigurations(context: GetServerSidePropsContext, props: P
  * @param namespacesRequired
  */
 async function injectNextI18NextConfigurations(context: GetServerSidePropsContext, props: Props, namespacesRequired?: string[] | undefined): Promise<void> {
-  const nextI18NextConfig = await getNextI18NextConfig(serverSideTranslations, context, namespacesRequired, true);
+  const nextI18NextConfig = await getNextI18NextConfig(serverSideTranslations, context, namespacesRequired);
   props._nextI18Next = nextI18NextConfig._nextI18Next;
 }