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

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tianlangwu committed Oct 30, 2020
1 parent b4071fe commit 87c3da9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions components/announcement_bar/version_bar/version_bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@ interface IMyComponentProps {
interface IMyComponentState {
serverVersionOnAppLoad?: string,
}

export default class VersionBar extends React.PureComponent <IMyComponentProps, IMyComponentState> {

export default class VersionBar extends React.PureComponent <IMyComponentProps, IMyComponentState> {
constructor(props:IMyComponentProps) {
super(props);

this.state = {
serverVersionOnAppLoad: props.serverVersion,
serverVersionOnAppLoad: props.serverVersion,
};
}

Expand Down

0 comments on commit 87c3da9

Please sign in to comment.