Skip to content

Commit 20ed4bd

Browse files
Non-functional changes.
1 parent a677a8e commit 20ed4bd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/app.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import React, { useState, useEffect, ErrorInfo } from "react";
22
import ReactDOM from "react-dom";
3-
import { Test } from "./components";
43
import { TextField } from "./components/text-field";
5-
import { GroupStore, GroupStoreMutable } from "./stores/group-store";
4+
import { GroupStoreMutable } from "./stores/group-store";
65
import { GroupContext, GroupContextObject } from "./contexts/group-context";
76
import { useForceUpdate } from "./force-update";
87

@@ -84,7 +83,7 @@ interface State {
8483
class App extends React.Component {
8584
public state: State = {};
8685

87-
public componentDidCatch(error: Error, info: ErrorInfo) {
86+
public componentDidCatch(error: Error, info: ErrorInfo): void {
8887
this.setState(() => ({
8988
error: error,
9089
info: info

0 commit comments

Comments
 (0)