mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:31:19 +08:00
refactor: improve types by functional setState and remove react/no-unused-state
This commit is contained in:
parent
ca48248715
commit
c7690c6af7
@ -126,7 +126,6 @@ class Item extends Component<ItemProps, ItemState> {
|
||||
failed: false,
|
||||
payload: null,
|
||||
payloadString: '',
|
||||
// eslint-disable-next-line react/no-unused-state,
|
||||
prevPayload: null,
|
||||
};
|
||||
|
||||
@ -142,7 +141,7 @@ class Item extends Component<ItemProps, ItemState> {
|
||||
newState.failed = true;
|
||||
}
|
||||
|
||||
this.setState(newState as ItemState);
|
||||
this.setState(state => ({ ...state, ...newState }));
|
||||
};
|
||||
|
||||
onEmitClick = () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user