Skip to content

Commit e8bc943

Browse files
committed
update
1 parent 56d7c71 commit e8bc943

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
3131
with:
32-
tag_name: ${{ github.ref }}
33-
release_name: Release ${{ github.ref }}
32+
tag_name: draft
33+
release_name: draft
3434
draft: true
3535
- name: Upload Release Asset
3636
id: upload-release-asset

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import React, { useState } from 'react';
1+
import { useState } from 'react';
22
import './App.css';
3-
import { Layout, Button, Row, Col, Card, Input, notification, Empty } from 'antd';
3+
import { Layout, Button, Row, Col, notification, Empty } from 'antd';
44
import { GithubOutlined } from '@ant-design/icons'
55
import BotCard from './components/BotCard'
66
import QRCodeLogin from './components/QRCodeLogin'

src/components/BotCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React, { useState } from 'react'
22
import { Row, Col, Card, Avatar, Popconfirm, notification } from 'antd';
3-
import { QqOutlined, SettingOutlined, VerifiedOutlined, DeleteOutlined, LoginOutlined, ArrowRightOutlined, MessageOutlined, CheckOutlined, QrcodeOutlined, PictureOutlined, LockOutlined } from '@ant-design/icons'
3+
import { QqOutlined, VerifiedOutlined, DeleteOutlined, ArrowRightOutlined, MessageOutlined, CheckOutlined, LockOutlined } from '@ant-design/icons'
44
import { dto } from '../api/gen/proto'
55
import { service } from '../api/RpcImpl'
66
import SolveCaptcha from './SolveCaptcha'

src/components/PasswordLogin.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import React, { useEffect, useRef, useState } from 'react';
2-
import { Modal, Form, InputNumber, Button, Skeleton, notification, Image, Input, Alert } from 'antd'
3-
import { dto } from '../api/gen/proto'
1+
import React, { useState } from 'react';
2+
import { Modal, Form, InputNumber, Button, notification, Input, Alert } from 'antd'
43
import { service } from '../api/RpcImpl'
54
import Long from 'long'
65
interface PasswordLoginProp {

src/components/QRCodeLogin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Modal, Form, InputNumber, Button, Skeleton, notification, Image } from 'antd'
22
import { dto } from '../api/gen/proto'
33
import { service } from '../api/RpcImpl'
4-
import React, { useEffect, useRef, useState } from 'react';
4+
import React, { useRef, useState } from 'react';
55
import { getImage } from '../utils/img'
66
import { useInterval } from '../utils/interval'
77
import Long from "long";

src/components/SolveCaptcha.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useState } from 'react'
1+
import React from 'react'
22
import { Modal, Form, Input, Button } from 'antd'
33
import { dto } from '../api/gen/proto'
44
import SmsCaptcha from './SmsCaptcha'

0 commit comments

Comments
 (0)