We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea26de8 commit 740e69cCopy full SHA for 740e69c
1 file changed
src/app/features/common-settings/developer-tools/DevelopTools.tsx
@@ -58,6 +58,8 @@ export function DeveloperTools({ requestClose }: DeveloperToolsProps) {
58
const [expandState, setExpandState] = useState(false);
59
const [expandUnreadDiagnostics, setExpandUnreadDiagnostics] = useState(false);
60
const [expandSlidingDiagnostics, setExpandSlidingDiagnostics] = useState(false);
61
+ const [expandThreadDiagnostics, setExpandThreadDiagnostics] = useState(false);
62
+ const [fetchingThreads, setFetchingThreads] = useState(false);
63
const [expandStateType, setExpandStateType] = useState<string>();
64
const [openStateEvent, setOpenStateEvent] = useState<StateEventInfo>();
65
const [composeEvent, setComposeEvent] = useState<{ type?: string; stateKey?: string }>();
0 commit comments