fix(legal): remove dead ODR link, fix contact email - #3
Merged
Conversation
Regulation (EU) 2024/3228 repealed the ODR linking obligation; the
platform stopped accepting complaints on 2025-03-20 and shut down on
2025-07-20. Its URL now redirects to a relocation notice. The § 36
VSBG statement stays.
The imprint email label carried a stray "me" suffix, so the one
contact detail § 5 (1) Nr. 2 DDG mandates rendered wrong in both
locales. Source it from CONTACT_EMAIL in config.ts instead of
duplicating the literal per locale.
Privacy § 11 named only the GitHub repo; Art. 13(1)(a)/(b) GDPR wants
the controller's contact details in the policy itself.
Note: MDX interpolates a link label but not a link destination, so
these use JSX anchors — `[{X}](mailto:{X})` emits a literal
`mailto:%7BX%7D` href and passes both astro check and prettier.
📝 WalkthroughWalkthroughThe change adds a shared legal contact email and uses it on German and English imprint and privacy pages. The imprint pages remove the outdated ODR notice and cite § 36 VSBG. ChangesLegal contact updates
Estimated code review effort: 2 (Simple) | ~10 minutes 🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@src/pages/imprint.mdx`:
- Around line 25-26: Update the wording in the imprint text to use “consumer
conciliation body” instead of “consumer arbitration board,” while preserving the
surrounding § 36 VSBG statement.
🪄 Autofix
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro Plus
Run ID: 0552ddf7-3782-48b6-ae44-ea418e08f8b4
📒 Files selected for processing (5)
src/config.tssrc/pages/de/imprint.mdxsrc/pages/de/privacy.mdxsrc/pages/imprint.mdxsrc/pages/privacy.mdx
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.
Regulation (EU) 2024/3228 repealed the ODR linking obligation; the platform stopped accepting complaints on 2025-03-20 and shut down on 2025-07-20. Its URL now redirects to a relocation notice. The § 36 VSBG statement stays.
The imprint email label carried a stray "me" suffix, so the one contact detail § 5 (1) Nr. 2 DDG mandates rendered wrong in both locales. Source it from CONTACT_EMAIL in config.ts instead of duplicating the literal per locale.
Privacy § 11 named only the GitHub repo; Art. 13(1)(a)/(b) GDPR wants the controller's contact details in the policy itself.
Note: MDX interpolates a link label but not a link destination, so these use JSX anchors —
[{X}](mailto:{X})emits a literalmailto:%7BX%7Dhref and passes both astro check and prettier.Summary by CodeRabbit