-
-
+
+
+ Final Summary
+
+
+
+
diff --git a/www/app/transcripts/recorder.tsx b/www/app/transcripts/recorder.tsx
index d43f7d5b..ed86a73f 100644
--- a/www/app/transcripts/recorder.tsx
+++ b/www/app/transcripts/recorder.tsx
@@ -110,8 +110,7 @@ export default function Recorder(props: RecorderProps) {
: undefined,
});
- if (!props.transcriptId)
- {
+ if (!props.transcriptId) {
const _wshack: any = _wavesurfer;
_wshack.renderer.renderSingleCanvas = () => {};
}
@@ -280,7 +279,7 @@ export default function Recorder(props: RecorderProps) {
useEffect(() => {
if (props.audioDevices && props.audioDevices.length > 0) {
- setDeviceId[props.audioDevices[0].value];
+ setDeviceId(props.audioDevices[0].value);
}
}, [props.audioDevices]);
@@ -348,7 +347,7 @@ export default function Recorder(props: RecorderProps) {
>
{isRecording ? "Stop" : "Record"}
- {props.audioDevices && props.audioDevices?.length > 0 && (
+ {props.audioDevices && props.audioDevices?.length > 0 && deviceId && (
<>
>
diff --git a/www/app/transcripts/shareLink.tsx b/www/app/transcripts/shareLink.tsx
index d5166d47..04f348bc 100644
--- a/www/app/transcripts/shareLink.tsx
+++ b/www/app/transcripts/shareLink.tsx
@@ -39,7 +39,7 @@ const ShareLink = () => {
value={currentUrl}
ref={inputRef}
onChange={() => {}}
- className="border rounded-lg md:rounded-xl p-2 flex-grow mr-2 text-sm bg-slate-100 outline-slate-400"
+ className="border rounded-lg md:rounded-xl p-2 flex-grow flex-shrink overflow-auto mr-2 text-sm bg-slate-100 outline-slate-400"
/>