Skip to content

Commit

Permalink
fix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
magicznyleszek committed Jan 17, 2025
1 parent 0d91f28 commit 9146516
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ export default class ProjectExportsCreator extends React.Component<
ProjectExportsCreatorProps,
ProjectExportsCreatorState
> {
constructor(props: ProjectExportsCreatorProps) {
super(props);
this.state = this.getInitialState();
}

getInitialState(): ProjectExportsCreatorState {
const newState = {
isComponentReady: false,
Expand Down

0 comments on commit 9146516

Please sign in to comment.