Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
Ginsakura committed Sep 22, 2023
1 parent c5285ca commit 03375b4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/containers/DeskreenStepper.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable @typescript-eslint/ban-ts-comment */
import React, { useState, useCallback, useContext, useEffect } from 'react';
import ipcRenderer from 'electron';
import { ipcRenderer } from 'electron';
import { makeStyles, createStyles } from '@material-ui/core/styles';
import Stepper from '@material-ui/core/Stepper';
import Step from '@material-ui/core/Step';
Expand All @@ -14,10 +14,10 @@ import {
H4,
H5,
Icon,
Position,
// Position,
Spinner,
Text,
Tooltip,
// Tooltip,
} from '@blueprintjs/core';
import { useTranslation } from 'react-i18next';
import { TFunction } from 'i18next';
Expand Down Expand Up @@ -76,10 +76,10 @@ const DeskreenStepper = React.forwardRef((_props, ref) => {
const [isSelectLanguageDialogOpen, setIsSelectLanguageDialogOpen] = useState(
false
);
const [
isStandForUkraineDialogOpen,
setIsStandForUkraineDialogOpen,
] = useState(true);
// const [
// isStandForUkraineDialogOpen,
// setIsStandForUkraineDialogOpen,
// ] = useState(true);
const [isDisplayHelloWord, setIsDisplayHelloWord] = useState(true);
const [helloWord, setHelloWord] = useState('Hello');

Expand Down

0 comments on commit 03375b4

Please sign in to comment.