@akanjs/cli 2.2.3-rc.0 → 2.2.3-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4660,7 +4660,7 @@ export default function GeneratedLayout({ children, params, searchParams }: Layo
4660
4660
  gaTrackingId={userLayout.gaTrackingId ?? inheritedLayout.gaTrackingId}
4661
4661
  layoutStyle={userLayout.layoutStyle ?? inheritedLayout.layoutStyle}
4662
4662
  reconnect={userLayout.reconnect ?? inheritedLayout.reconnect ?? false}
4663
- dictionary={allDictionary[params.lang]}
4663
+ allDictionary={process.env.AKAN_PUBLIC_RENDER_ENV === "ssr" ? allDictionary : undefined}
4664
4664
  >
4665
4665
  <UserLayout params={params} searchParams={searchParams}>{children}</UserLayout>
4666
4666
  </System.Provider>
package/index.js CHANGED
@@ -4658,7 +4658,7 @@ export default function GeneratedLayout({ children, params, searchParams }: Layo
4658
4658
  gaTrackingId={userLayout.gaTrackingId ?? inheritedLayout.gaTrackingId}
4659
4659
  layoutStyle={userLayout.layoutStyle ?? inheritedLayout.layoutStyle}
4660
4660
  reconnect={userLayout.reconnect ?? inheritedLayout.reconnect ?? false}
4661
- dictionary={allDictionary[params.lang]}
4661
+ allDictionary={process.env.AKAN_PUBLIC_RENDER_ENV === "ssr" ? allDictionary : undefined}
4662
4662
  >
4663
4663
  <UserLayout params={params} searchParams={searchParams}>{children}</UserLayout>
4664
4664
  </System.Provider>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/cli",
3
- "version": "2.2.3-rc.0",
3
+ "version": "2.2.3-rc.1",
4
4
  "sourceType": "module",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -35,7 +35,7 @@
35
35
  "@langchain/openai": "^1.4.6",
36
36
  "@tailwindcss/node": "^4.3.0",
37
37
  "@trapezedev/project": "^7.1.4",
38
- "akanjs": "2.2.3-rc.0",
38
+ "akanjs": "2.2.3-rc.1",
39
39
  "chalk": "^5.6.2",
40
40
  "commander": "^14.0.3",
41
41
  "daisyui": "^5.5.20",