refactor(frontend): clean up HelpMenu-related code#12292
Merged
DenysKarmazynDFINITY merged 1 commit intomainfrom Apr 2, 2026
Merged
refactor(frontend): clean up HelpMenu-related code#12292DenysKarmazynDFINITY merged 1 commit intomainfrom
DenysKarmazynDFINITY merged 1 commit intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the unused HelpMenu component and its associated dependencies as part of a refactoring effort to clean up unused code. The changes include deletion of the HelpMenu component itself, the ChangelogLink component, the IconChangelog icon component, removal of changelog-related i18n strings across all supported languages, removal of the changelog tracking constant, and deletion of the associated test file.
Changes:
- Deleted the HelpMenu.svelte component (95 lines) and its test file
- Removed ChangelogLink.svelte component and IconChangelog.svelte icon
- Removed
TRACK_COUNT_OPEN_CHANGELOGtracking constant from analytics - Removed
changelogentries from i18n type definitions and all 16 supported language JSON files - Updated type definitions to match the removed i18n properties
Reviewed changes
Copilot reviewed 20 out of 21 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| src/frontend/src/tests/lib/components/core/HelpMenu.spec.ts | Deleted test file (55 lines) |
| src/frontend/src/lib/components/core/HelpMenu.svelte | Deleted main HelpMenu component (95 lines) |
| src/frontend/src/lib/components/navigation/ChangelogLink.svelte | Deleted ChangelogLink component (30 lines) |
| src/frontend/src/lib/components/icons/lucide/IconChangelog.svelte | Deleted icon component (29 lines) |
| src/frontend/src/lib/types/i18n.d.ts | Removed two changelog type definitions from I18nNavigation interface |
| src/frontend/src/lib/constants/analytics.constants.ts | Removed TRACK_COUNT_OPEN_CHANGELOG constant |
| src/frontend/src/lib/i18n/*.json (16 files) | Removed changelog entries from text and alt sections of all language files |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Since the HelpMenu component is no longer used, we can clean up quite a few things.