Open
Conversation
The header nav links were hardcoded to https://v1michigan.com/... which is unnecessary since these routes are served by the same app. Using relative paths (/apply, /ship-it, /events, etc.) is more correct and avoids issues with environment mismatches (e.g. preview deploys, localhost). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
✅ Deploy Preview for v1-landing-page ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
|
Has this been verified? I tried doing something similar when I was onboarded in early January and it just didn't work |
✅ Deploy Preview for v1-landing-page ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
|
@kllarena07 i switched from turbopack to webpack, seems to have fixed it. Can you verify on ur machine? |
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.
Summary
header.tsxwere hardcoded as absolute URLs (https://v1michigan.com/apply,https://v1michigan.com/ship-it, etc.) even though they're routes on the same app/apply,/ship-it,/events,/community,/join)http://startupweek.v1michigan.com/as-is since it's a different subdomainThis is more correct and avoids issues on preview deploys / localhost where the hardcoded domain wouldn't match.
Test plan
🤖 Generated with Claude Code
Note
Low Risk
Simple link target updates in the header; low risk aside from potential misrouting/UTM regressions if any path is incorrect.
Overview
Updates
components/header.tsxnavigation to use relative internal routes (e.g./apply,/ship-it,/events,/community,/join, preserving existing UTM params) instead of hardcodedhttps://v1michigan.com/...absolute URLs for both desktop and mobile menus.External navigation (e.g.
startupweek.v1michigan.com) is left as an absolute link.Written by Cursor Bugbot for commit d874e66. This will update automatically on new commits. Configure here.