-
Notifications
You must be signed in to change notification settings - Fork 28
Fixed slack link #121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed slack link #121
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -126,9 +126,9 @@ const config: Config = { | |||||
| title: 'Community', | ||||||
| items: [ | ||||||
| { | ||||||
| label: ' Slack', | ||||||
| to: 'https://github.com/PalisadoesFoundation', | ||||||
| className: 'footer__icon footer__slack', | ||||||
| label: 'Forums', | ||||||
| to: 'https://community.talawa.io/', | ||||||
| className: 'footer__icon footer__news', | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial Consider using a more semantic CSS class name. The Apply this diff if you want more semantic styling: - className: 'footer__icon footer__news',
+ className: 'footer__icon footer__forums',📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| }, | ||||||
| { | ||||||
| label: ' News', | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add leading space to the label for consistency.
All other footer link labels in this configuration include a leading space (lines 134, 139, 149, 154, 159, 169), but "Forums" is missing one.
Apply this diff to maintain consistency:
📝 Committable suggestion
🤖 Prompt for AI Agents