Skip to content

Commit

Permalink
remove unnecessary app react state
Browse files Browse the repository at this point in the history
  • Loading branch information
scytacki committed Sep 11, 2024
1 parent 4df79af commit daa70c7
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/components/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ import "react-tippy/dist/tippy.css";
import "./app.scss";

interface IProps extends IBaseProps {}
interface IState {
}

function resolveAppMode(
stores: IStores,
Expand Down Expand Up @@ -136,10 +134,7 @@ export const authAndConnect = (stores: IStores) => {

@inject("stores")
@observer
export class AppComponent extends BaseComponent<IProps, IState> {

public state: IState = {
};
export class AppComponent extends BaseComponent<IProps> {

constructor(props: IProps) {
super(props);
Expand Down

0 comments on commit daa70c7

Please sign in to comment.