- Add userSettings prop to LocationEditForm to check payment configuration - Disable payment method dropdown when neither IBAN nor Revolut is enabled - Force select value to "none" when both methods are disabled - Disable individual IBAN/Revolut options when not configured - Display NoteBox warning explaining why payment options are unavailable - Update LocationEditPage and LocationAddPage to fetch and pass userSettings - Add English and Croatian translations for disabled state message This prevents users from configuring location payment methods before setting up their own payment info. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
408 B
TypeScript
8 lines
408 B
TypeScript
import { LocationEditForm } from '@/app/ui/LocationEditForm';
|
|
import { YearMonth } from '@/app/lib/db-types';
|
|
import { getUserSettings } from '@/app/lib/actions/userSettingsActions';
|
|
|
|
export default async function LocationAddPage({ yearMonth }: { yearMonth:YearMonth }) {
|
|
const userSettings = await getUserSettings();
|
|
return (<LocationEditForm yearMonth={yearMonth} userSettings={userSettings} />);
|
|
} |