Fix: suggestion: connected generic component#339
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates CONTRIBUTING.md to add an Examples section detailing various patterns available in the repository. A review comment correctly identifies a formatting and truncation error in the markdown changes, where headers were truncated with ellipses and a stray backtick was introduced, and provides the corrected markdown structure.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| ## Edit `README_SOURCE.md` to generate an updated `... | ||
| ## Examples | ||
|
|
||
| The repository contains several examples demonstrating different patterns: | ||
|
|
||
| - [Generic Components](examples/generic-component/) - How to create reusable generic components. | ||
| - [Connected Components](examples/connected-component/) - How to connect standard components to Redux. | ||
| - [Connected Generic Components](examples/connected-generic-component/) - **NEW**: How to combine generics with Redux connection for type-safe, reusable connected components. | ||
| ...` |
There was a problem hiding this comment.
It looks like there was a copy-paste or formatting error when adding the new examples section. The header on line 8 is truncated with ... and there is a stray `...`` on line 16.
Here is the corrected text:
## Edit `README_SOURCE.md` to generate an updated `README.md`
## Examples
The repository contains several examples demonstrating different patterns:
- [Generic Components](examples/generic-component/) - How to create reusable generic components.
- [Connected Components](examples/connected-component/) - How to connect standard components to Redux.
- [Connected Generic Components](examples/connected-generic-component/) - **NEW**: How to combine generics with Redux connection for type-safe, reusable connected components.|
Closing as duplicate. The latest fix is in PR #341. Apologies for the noise — improving the automation. |
Fixes #55
This PR addresses the IssueHunt-funded issue #55.