Skip to content

Commit

Permalink
fix: 修复classNames的引入错误
Browse files Browse the repository at this point in the history
  • Loading branch information
duan602728596 committed Sep 13, 2024
1 parent 79ad5f5 commit de0ff0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/qqtools/src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { ReactElement, PropsWithChildren } from 'react';
import * as classNames from 'classnames';
import classNames from 'classnames';
import ButtonLink from '../ButtonLink/ButtonLink';

interface HeaderProps extends PropsWithChildren {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Button, Modal, Form, Alert, Input, message, type FormInstance, type Mod
import type { Store } from 'antd/es/form/interface';
import type { UseMessageReturnType } from '@qqtools-types/antd';
import { ChromeFilled as IconChromeFilled, QuestionCircleTwoTone as IconQuestionCircleTwoTone } from '@ant-design/icons';
import * as classNames from 'classnames';
import classNames from 'classnames';
import style from './executablePath.sass';
import { showOpenDialog } from '../../../utils/remote/dialog';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
import { Button, Form, Input, message, Select, type FormInstance } from 'antd';
import type { DefaultOptionType } from 'rc-select/es/Select';
import type { UseMessageReturnType } from '@qqtools-types/antd';
import * as classNames from 'classnames';
import classNames from 'classnames';
import {
requestSMS,
type SMSResult,
Expand Down

0 comments on commit de0ff0a

Please sign in to comment.