aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/publishDebugInfo/Component.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/publishDebugInfo/Component.tsx')
-rw-r--r--src/features/publishDebugInfo/Component.tsx18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/features/publishDebugInfo/Component.tsx b/src/features/publishDebugInfo/Component.tsx
index 3c6729ba0..8b38ba5af 100644
--- a/src/features/publishDebugInfo/Component.tsx
+++ b/src/features/publishDebugInfo/Component.tsx
@@ -1,15 +1,19 @@
1import { inject, observer } from 'mobx-react'; 1import { inject, observer } from 'mobx-react';
2import { Component, ReactElement } from 'react'; 2import { Component, type ReactElement } from 'react';
3import { defineMessages, injectIntl, WrappedComponentProps } from 'react-intl'; 3import {
4import withStyles, { WithStylesProps } from 'react-jss'; 4 type WrappedComponentProps,
5import { StoresProps } from '../../@types/ferdium-components.types'; 5 defineMessages,
6import { state as ModalState } from './store'; 6 injectIntl,
7import { H1 } from '../../components/ui/headline'; 7} from 'react-intl';
8import withStyles, { type WithStylesProps } from 'react-jss';
9import type { StoresProps } from '../../@types/ferdium-components.types';
8import { sendAuthRequest } from '../../api/utils/auth'; 10import { sendAuthRequest } from '../../api/utils/auth';
11import Modal from '../../components/ui/Modal';
9import Button from '../../components/ui/button'; 12import Button from '../../components/ui/button';
13import { H1 } from '../../components/ui/headline';
10import Input from '../../components/ui/input/index'; 14import Input from '../../components/ui/input/index';
11import Modal from '../../components/ui/Modal';
12import { DEBUG_API } from '../../config'; 15import { DEBUG_API } from '../../config';
16import { state as ModalState } from './store';
13 17
14const debug = require('../../preload-safe-debug')( 18const debug = require('../../preload-safe-debug')(
15 'Ferdium:feature:publishDebugInfo', 19 'Ferdium:feature:publishDebugInfo',