Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/_components/placeholder-replacer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export function PlaceholderReplacer() {
// 2. If Ory email is available, use that (highest priority)
// 3. If no Ory email but cookie exists, use cookie value
// 4. Otherwise, use original placeholder
const getCookieEmail = () => getCookie("last_arcadedev_account_email");
// Canonical name set by Identity UI and read by the website navbar.
const getCookieEmail = () => getCookie("last_arcade_account_email");

const replacement = loading
? "{arcade_user_id}" // Keep original while loading
Expand Down
Loading