feat: 소비 기록 입력 시 휴식 시간 생략 외 2건#63
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 1d59703ff2
ℹ️ 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".
| lazy: async () => { | ||
| const module = await import('./pages/LogWriterPage'); | ||
| return { | ||
| Component: module.LogWriterPage, | ||
| }; |
There was a problem hiding this comment.
Add visible loading UI for lazy route resolution
Switching routes to lazy makes page components load asynchronously, but this file does not introduce any RouterProvider fallbackElement; React Router renders null while a lazy route module is resolving. On first load (for /) or slow-network navigation, users will see a blank page with no feedback, which looks like a hang. Add a fallback element (or equivalent route-level fallback) so lazy route transitions remain observable.
Useful? React with 👍 / 👎.
|
@codex lint-web 실패하는 거 해결 부탁해 |
Summary
Testing
|
변경