Implement strict type enforcement plan

This commit is contained in:
gpt-engineer-app[bot]
2025-10-16 14:10:35 +00:00
parent 3bcd9e03fa
commit bc4a444138
25 changed files with 161 additions and 132 deletions

View File

@@ -118,11 +118,11 @@ export function BlockedUsers() {
user_id: user.id,
changed_by: user.id,
action: 'user_unblocked',
changes: {
changes: JSON.parse(JSON.stringify({
blocked_user_id: blockedUserId,
username,
timestamp: new Date().toISOString()
} as any
}))
}]);
setBlockedUsers(prev => prev.filter(block => block.id !== blockId));