Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reading function #336

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add "save audio to file" function
  • Loading branch information
nufeng1999 committed Apr 7, 2023
commit 88e98eb6602f807a5b604381d052642675a6a303
3 changes: 0 additions & 3 deletions src/Block.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ import CheckIcon from '@mui/icons-material/Check';
import EditIcon from '@mui/icons-material/Edit';
import { styled, alpha } from '@mui/material/styles';
import RefreshIcon from '@mui/icons-material/Refresh';
import VoiceOverOffIcon from '@mui/icons-material/VoiceOverOff';
import RecordVoiceOverIcon from '@mui/icons-material/RecordVoiceOver';
import StopIcon from '@mui/icons-material/Stop';
import ContentCopyIcon from '@mui/icons-material/ContentCopy';
import MoreVertIcon from '@mui/icons-material/MoreVert';
Expand Down Expand Up @@ -83,7 +81,6 @@ export interface Props {
function _Block(props: Props) {
const { t } = useTranslation()
const { msg, setMsg } = props;
const { speech } = props;
const [isHovering, setIsHovering] = useState(false)
const [isEditing, setIsEditing] = useState(false)

Expand Down