Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix missing type for state
Browse files Browse the repository at this point in the history
  • Loading branch information
Dariusz Niemczyk committed Aug 19, 2021
1 parent fe1d0e6 commit fa03b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/structures/BackdropPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class BackdropPanel extends React.PureComponent<IProps, IState> {
};
private style = getComputedStyle(document.documentElement);

public state = {};
public state: IState = {};

public componentDidMount() {
UIStore.instance.on("SpacePanel", this.onResize);
Expand Down

0 comments on commit fa03b10

Please sign in to comment.