fix(app-router-playground): clean warnings and stabilize checks#694
Conversation
commit: |
|
/bigbonk review |
1 similar comment
|
/bigbonk review |
There was a problem hiding this comment.
Overall a solid cleanup PR. The SVG casing fixes, setCount updater pattern, and Promise.all parallelization are all correct improvements. A few comments below, mostly around the getGridColumnKey approach and the rolldown workaround.
Good changes:
stroke-opacity->strokeOpacityfixes real JSX warningssetCount(count + 1)->setCount(prev => prev + 1)is the correct React patternPromise.allfor independent awaits in loading pages is a nice improvement- Removing the redundant spread (
[...arr.map()]->arr.map()) in breadcrumbs - Removing unused
Linkimport from product-list - Using
_backgroundprefix for intentionally unused destructured variable classNameprop being threaded through viaclsxinMdx
examples/app-router-playground/app/private-cache/_components/product-list.tsx
Show resolved
Hide resolved
|
Review posted. Here's a summary of the feedback: Positive:
Key concerns:
|
Summary