Ran the following code
```
const onPressSave = React.useCallback(async () => {
dispatch({
type: setFarcasterFriendsFIDActionType,
payload: {
farcasterUsers: [
{
userID: 'dispatch_test_userID_1',
username: 'dispatch_test_username_1',
farcasterID: 'dispatch_test_farcasterID_1',
},
],
},
});
dispatch({
type: setFarcasterFriendsFIDActionType,
payload: {
farcasterUsers: [
{
userID: 'dispatch_test_userID_2',
username: 'dispatch_test_username_2',
farcasterID: 'dispatch_test_farcasterID_3',
},
],
},
});
dispatch({
type: setFarcasterFriendsFIDActionType,
payload: {
farcasterUsers: [
{
userID: 'dispatch_test_userID_1',
username: 'dispatch_test_username_1',
farcasterID: 'dispatch_test_farcasterID_update',
},
],
},
});
}, [dispatch]);
```
{F1455351}