Skip to content

Commit 40957e4

Browse files
committed
fix: remove OpenAI from voice button aria-label to fix E2E test
1 parent 4ffcec9 commit 40957e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/browser/components/ChatInput/VoiceInputButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const VoiceInputButton: React.FC<VoiceInputButtonProps> = (props) => {
2929

3030
const needsApiKey = !props.isApiKeySet;
3131
const { label, colorClass } = needsApiKey
32-
? { label: "Voice input (requires OpenAI API key)", colorClass: "text-muted/50" }
32+
? { label: "Voice input (requires API key)", colorClass: "text-muted/50" }
3333
: STATE_CONFIG[props.state];
3434

3535
const Icon = props.state === "transcribing" ? Loader2 : Mic;

0 commit comments

Comments
 (0)