From 2f3f2ae7f098376f535e5aa993c9eedc14e36f5d Mon Sep 17 00:00:00 2001 From: Vijay A Date: Fri, 22 Mar 2024 02:33:33 +0530 Subject: Upgrade node modules --- src/features/publishDebugInfo/Component.tsx | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'src/features/publishDebugInfo/Component.tsx') 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 @@ import { inject, observer } from 'mobx-react'; -import { Component, ReactElement } from 'react'; -import { defineMessages, injectIntl, WrappedComponentProps } from 'react-intl'; -import withStyles, { WithStylesProps } from 'react-jss'; -import { StoresProps } from '../../@types/ferdium-components.types'; -import { state as ModalState } from './store'; -import { H1 } from '../../components/ui/headline'; +import { Component, type ReactElement } from 'react'; +import { + type WrappedComponentProps, + defineMessages, + injectIntl, +} from 'react-intl'; +import withStyles, { type WithStylesProps } from 'react-jss'; +import type { StoresProps } from '../../@types/ferdium-components.types'; import { sendAuthRequest } from '../../api/utils/auth'; +import Modal from '../../components/ui/Modal'; import Button from '../../components/ui/button'; +import { H1 } from '../../components/ui/headline'; import Input from '../../components/ui/input/index'; -import Modal from '../../components/ui/Modal'; import { DEBUG_API } from '../../config'; +import { state as ModalState } from './store'; const debug = require('../../preload-safe-debug')( 'Ferdium:feature:publishDebugInfo', -- cgit v1.2.3-54-g00ecf