Design liquid glass console surfaces#53
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| COPY app/control/pyproject.toml ./pyproject.toml | ||
| COPY app/control/README.md ./README.md | ||
| COPY app/control/aionos_control ./aionos_control | ||
| COPY app/control/app ./app | ||
| COPY app/kernel ./app/kernel | ||
|
|
||
| RUN pip install --upgrade pip setuptools wheel \ | ||
| && pip install -e . | ||
|
|
||
| EXPOSE 8000 | ||
|
|
||
| CMD ["python", "-m", "app.control.app.main"] |
There was a problem hiding this comment.
Copy full control package into image before running module
The new control image copies only app/control/app into /srv/app/app (lines 11‑15) but the container starts with python -m app.control.app.main. Because the outer app/control package (where app.control is defined) isn’t copied into the image, that module path won’t exist and the container will exit with ModuleNotFoundError: No module named 'app.control'. Copy the entire app/ tree or adjust the entrypoint so the package structure on disk matches the module path.
Useful? React with 👍 / 👎.
| import createTranslator from 'next-intl/server'; | ||
|
|
||
| const locales = ['en', 'fa']; | ||
|
|
There was a problem hiding this comment.
Import createTranslator as named export
Changing next.config.mjs to import createTranslator from 'next-intl/server' makes createTranslator undefined because next-intl/server exposes it as a named export. When Next.js loads this config it will throw TypeError: createTranslator is not a function, which is already causing pnpm lint to fail. Use the original named import (import { createTranslator } …) or destructure the default to avoid the runtime error.
Useful? React with 👍 / 👎.
Summary
GlassPanelcomponent, update the global Tailwind theme with Liquid Glass styling, and pull in the Tailwind forms plugin/setupTesting
createTranslatoris not a function in next.config.mjs)Codex Task