Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
solaoi committed May 22, 2024
1 parent ec396c2 commit aa88b3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/molecules/TranscriptionAccuracy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ const TranscriptionAccuracy = (): JSX.Element => {
return "文字起こし:日";
case "online-transcript":
return "文字起こし:WhisperAPI";
case "online-transcript-to-en":
return "翻訳(英):WhisperAPI";
case "online-amivoice":
return "文字起こし:AmiVoiceAPI";
case "online-chat":
return "AI:ChatGPT";
case "online-translate-to-en":
return "翻訳(英):WhisperAPI";
case "small-translate-to-en":
return "翻訳(英):低";
case "medium-translate-to-en":
Expand Down Expand Up @@ -144,9 +144,9 @@ const TranscriptionAccuracy = (): JSX.Element => {
</label>
</li>
{(!speakerLanguage?.startsWith("en-us") && !speakerLanguage?.startsWith("small-en-us")) && (
<li key="online-translate-to-en">
<li key="online-transcript-to-en">
<label className="label inline-flex active:!bg-inherit">
<input type="radio" name="trace-option" className="radio radio-accent" onChange={change} value="online-translate-to-en" checked={"online-translate-to-en" === transcriptionAccuracy} />
<input type="radio" name="trace-option" className="radio radio-accent" onChange={change} value="online-transcript-to-en" checked={"online-transcript-to-en" === transcriptionAccuracy} />
<a className="grow">翻訳(英):WhisperAPI</a>
</label>
</li>
Expand Down

0 comments on commit aa88b3f

Please sign in to comment.