Update redux.md (#3176)

This commit is contained in:
Danilo Britto 2025-07-13 02:32:01 -05:00 committed by GitHub
parent 56909808fa
commit 4ad3977b38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,7 +70,7 @@ type PersonStoreAction =
| { type: 'person/setLastName'; lastName: string }
| { type: 'person/setEmail'; email: string }
type PersonStore = PersonStoreState & PersonStoreActions
type PersonStore = PersonStoreState & PersonStoreAction
const personStoreReducer = (
state: PersonStoreState,