Angular - State Management
Identify the mistake in this Angular state update:
const profile = signal({name: 'Alice'});
profile.set({name: 'Bob'});
profile().name = 'Charlie';