Copilot commented on code in PR #17798:
URL: https://github.com/apache/hudi/pull/17798#discussion_r2669496049
##########
website/src/components/GetInvolvedGrid/index.js:
##########
@@ -46,10 +46,18 @@ const GetInvolvedGrid = () => {
),
},
{
- title: 'For proposing large features, changes',
+ title: 'Engage on social platforms',
content: (
<>
- Start a RFC. Instructions <a href="/contribute/rfc-process">here</a>.
+ Hudi community is on <a
href='https://www.linkedin.com/company/apache-hudi/'>LinkedIn</a>, <a
href='https://x.com/apachehudi'>X (Twitter)</a>, <a
href='https://www.youtube.com/@apachehudi'>YouTube</a>. Follow us for latest
updates!
Review Comment:
The href attributes use single quotes while other attributes in the codebase
use double quotes. For consistency with the existing code patterns (like line
12, 13, etc.), consider using double quotes for all href attributes.
```suggestion
Hudi community is on <a
href="https://www.linkedin.com/company/apache-hudi/">LinkedIn</a>, <a
href="https://x.com/apachehudi">X (Twitter)</a>, <a
href="https://www.youtube.com/@apachehudi">YouTube</a>. Follow us for latest
updates!
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]