mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:41:07 +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,
|
failed: false,
|
||||||
payload: null,
|
payload: null,
|
||||||
payloadString: '',
|
payloadString: '',
|
||||||
// eslint-disable-next-line react/no-unused-state,
|
|
||||||
prevPayload: null,
|
prevPayload: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -142,7 +141,7 @@ class Item extends Component<ItemProps, ItemState> {
|
|||||||
newState.failed = true;
|
newState.failed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState(newState as ItemState);
|
this.setState(state => ({ ...state, ...newState }));
|
||||||
};
|
};
|
||||||
|
|
||||||
onEmitClick = () => {
|
onEmitClick = () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user