Skip to content

fix: update in the wild link on community page - #43403

Open
sadpandajoe wants to merge 1 commit into
masterfrom
fix-update-in-the-wild-link
Open

fix: update in the wild link on community page#43403
sadpandajoe wants to merge 1 commit into
masterfrom
fix-update-in-the-wild-link

Conversation

@sadpandajoe

@sadpandajoe sadpandajoe commented Aug 21, 2026

Copy link
Copy Markdown
Member

SUMMARY

On the community page, the in the wild link goes to an old github page that has been deleted. This is to point it back to the correct community page

BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF

TESTING INSTRUCTIONS

ADDITIONAL INFORMATION

  • Has associated issue: Fixes RESOURCES/INTHEWILD.md missing in master - Website link broken #43399
  • Required feature flags:
  • Changes UI
  • Includes DB Migration (follow approval process in SIP-59)
    • Migration is atomic, supports rollback & is backwards-compatible
    • Confirm DB migration upgrade and downgrade tested
    • Runtime estimates and downtime expectations provided
  • Introduces new feature or API
  • Removes existing feature or API

@bito-code-review

bito-code-review Bot commented Aug 21, 2026

Copy link
Copy Markdown
Contributor

Code Review Agent Run #38aee8

Actionable Suggestions - 0
Review Details
  • Files reviewed - 1 · Commit Range: 109a730..109a730
    • docs/src/pages/community.tsx
  • Files skipped - 0
  • Tools
    • Whispers (Secret Scanner) - ✔︎ Successful
    • Detect-secrets (Secret Scanner) - ✔︎ Successful

Bito Usage Guide

Commands

Type the following command in the pull request comment and save the comment.

  • /review - Manually triggers an incremental AI Review.

  • /review full - Manually triggers a full AI Review.

  • /pause - Pauses automatic reviews on this pull request.

  • /resume - Resumes automatic reviews.

  • /resolve - Marks all Bito-posted review comments as resolved.

  • /abort - Cancels all in-progress reviews.

Refer to the documentation for additional commands.

Configuration

This repository uses Superset You can customize the agent settings here or contact your Bito workspace admin at evan@preset.io.

Documentation & Help

AI Code Review powered by Bito Logo

@github-actions github-actions Bot added the doc Namespace | Anything related to documentation label Aug 21, 2026
@netlify

netlify Bot commented Aug 21, 2026

Copy link
Copy Markdown

Deploy Preview for superset-docs-preview ready!

Name Link
🔨 Latest commit 109a730
🔍 Latest deploy log https://app.netlify.com/projects/superset-docs-preview/deploys/6a88a1c5a85c5f0008316575
😎 Deploy Preview https://deploy-preview-43403--superset-docs-preview.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
🤖 Make changes Run an agent on this branch

To edit notification comments on pull requests, go to your Netlify project configuration.

},
{
url: 'https://github.com/apache/superset/blob/master/RESOURCES/INTHEWILD.md',
url: 'https://superset.apache.org/inTheWild/',

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: The internal page is hard-coded to the production origin, so the community card on local development servers, preview deployments, and alternate hosted environments sends users to the production site instead of that environment's inTheWild page. Use a site-relative Docusaurus URL so the link follows the current deployment. [api mismatch]

Severity Level: Minor 🧹
- ⚠️ Local development links leave the active site.
- ⚠️ Preview users cannot verify the Organizations destination locally.
- ⚠️ Alternate hosted deployments display production content instead.

Use CodeAnt Skill

Prompt for AI Agent 🤖
This is a comment left during a code review.

**Path:** docs/src/pages/community.tsx
**Line:** 70:70
**Comment:**
	*Api Mismatch: The internal page is hard-coded to the production origin, so the community card on local development servers, preview deployments, and alternate hosted environments sends users to the production site instead of that environment's `inTheWild` page. Use a site-relative Docusaurus URL so the link follows the current deployment.

Validate the correctness of the flagged issue. If correct, How can I resolve this? If you propose a fix, implement it and please make it concise.
Once fix is implemented, also check other comments on the same PR, and ask user if the user wants to fix the rest of the comments as well. if said yes, then fetch all the comments validate the correctness and implement a minimal fix
👍 | 👎

@bito-code-review

Copy link
Copy Markdown
Contributor

The flagged issue is correct. Hard-coding the production origin prevents the link from working correctly in local, preview, or alternate environments. To resolve this, you should use a site-relative path. Based on the provided context, you can update the URL to a relative path like '/inTheWild/'.

docs/src/pages/community.tsx

{
-    url: 'https://github.com/apache/superset/blob/master/RESOURCES/INTHEWILD.md',
+    url: '/inTheWild/',
    title: 'Organizations',

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

doc Namespace | Anything related to documentation size/XS

Projects

None yet

Development

Successfully merging this pull request may close these issues.

RESOURCES/INTHEWILD.md missing in master - Website link broken

1 participant