Remove lastName field from UserSettings and database

- Removed lastName from UserSettings interface
- Updated UserSettingsForm to remove lastName input field
- Removed lastName from all database operations
- Updated form validation schema to remove lastName validation
- Updated ViewLocationCard to use only firstName for recipient name
- Removed lastName from user settings form state tracking
- Updated Croatian translations to reflect changes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Knee Cola
2025-11-22 22:26:41 +01:00
parent 86913f60ec
commit c1762f7157
5 changed files with 15 additions and 55 deletions

View File

@@ -20,8 +20,6 @@ export interface UserSettings {
userId: string;
/** first name */
firstName?: string | null;
/** last name */
lastName?: string | null;
/** street */
street?: string | null;
/** town */