You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pedro flagged that the community link on the LP, hub and Vibeathon page opened the announcements channel. Swapped for the Comunidade 2 invite in the shared constant and the Vibeathon seed; the edition rows in the database are updated in place.
Checked against CLAUDE.md priorities (auth, data safety, correctness, analytics, conventions). No findings.
WHATSAPP_COMMUNITY_URL is a single shared constant consumed by page.tsx, pre-registro/page.tsx, and h/page.tsx — all three surfaces pick up the new link automatically, no stray hardcoded copies of the old URL remain in shipped code.
supabase/migrations/00056_vibeathon_edition.sql seed insert is guarded by where not exists (select 1 from public.hackathons where slug = ...), so it stays idempotent/re-runnable; editing the literal here only affects fresh installs, consistent with the PR description noting the already-applied production rows were updated separately.
No service-role writes, RLS, or auth surfaces touched — pure data/string change.
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
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.
Pedro flagged that the community link on the LP, hub and Vibeathon page opened the announcements channel. Swapped for the Comunidade 2 invite in the shared constant and the Vibeathon seed; the edition rows in the database are updated in place.