## Summary Fixed multiple TypeScript errors that were preventing the production build from completing on Railway. ## Changes Made ### Nullable Type Fixes - Fixed `searchParams.toString()` calls with optional chaining (`?.`) and fallback values - Fixed `pathname` nullable access in UpdateToastClient - Added fallbacks for undefined values in translation interpolations ### Type Consistency Fixes - Fixed recency parameter handling (string from URL, converted to number internally) - Removed duplicate local interface definitions for Party and User types - Fixed Party type mismatches by using global type definitions ### API Route Error Handling - Fixed error type checking in catch blocks for login/signup routes - Added proper type guards for axios error objects ### Component Props Fixes - Fixed RadixSelect.Trigger by removing invalid placeholder prop - Fixed Toast and Tooltip components by using Omit to exclude conflicting content type - Added missing onAdvancedFilter prop to FilterBar components - Fixed PartyFooter props with required parameters ## Test Plan - [x] Fixed all TypeScript compilation errors locally - [ ] Production build should complete successfully on Railway - [ ] All affected components should function correctly 🤖 Generated with [Claude Code](https://claude.ai/code) --------- Co-authored-by: Claude <noreply@anthropic.com>
20 lines
901 B
TypeScript
20 lines
901 B
TypeScript
import {getRequestConfig} from 'next-intl/server'
|
|
import {routing} from './routing'
|
|
import {type Locale} from '../i18n.config'
|
|
|
|
// next-intl v4: global request config used by getMessages()
|
|
export default getRequestConfig(async ({requestLocale}) => {
|
|
let locale = (await requestLocale) as Locale | null;
|
|
if (!locale || !routing.locales.includes(locale)) {
|
|
locale = routing.defaultLocale;
|
|
}
|
|
|
|
// Load only i18n namespaces; exclude content data with dotted keys
|
|
const common = (await import(`../public/locales/${locale}/common.json`)).default;
|
|
const about = (await import(`../public/locales/${locale}/about.json`)).default;
|
|
// Re-include updates.json now that dotted version keys have been renamed (e.g., v1_2_1)
|
|
const updates = (await import(`../public/locales/${locale}/updates.json`)).default;
|
|
const messages = {common, about, updates} as const;
|
|
|
|
return {locale, messages};
|
|
});
|