Compare commits

...

4 Commits

4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1 +1 @@
0.1.1.1
0.1.1.3
+2 -2
View File
@@ -5573,7 +5573,7 @@ html.theme-cupertino .events-scroll-container {
flex-wrap: wrap;
gap: 6px;
padding: 6px 12px calc(6px + env(safe-area-inset-bottom, 0px));
font-size: 11px;
font-size: 13px;
line-height: 1.4;
color: #64748b;
background: rgba(11, 12, 16, 0.72);
@@ -5615,7 +5615,7 @@ html.theme-cupertino .events-scroll-container {
gap: 4px;
padding: 2px 8px;
border-radius: 999px;
font-size: 11px;
font-size: 13px;
font-weight: 500;
color: #94a3b8;
text-decoration: none;
+1 -1
View File
@@ -35,7 +35,7 @@ export default function AppFooter() {
aria-label={t('footer.kofi_title')}
onClick={() => trackPlausibleEvent(PlausibleEvents.KOFI_LINK_CLICKED)}
>
<Coffee size={12} aria-hidden="true" />
<Coffee size={14} aria-hidden="true" />
<span>{t('footer.kofi_label')}</span>
</a>
</footer>
+2 -2
View File
@@ -110,8 +110,7 @@ export default function LiveVoiceCapture({
if (!recorder || recorder.state !== 'recording') return
recorder.stop()
clearTimer()
stopStream()
}, [clearTimer, stopStream])
}, [clearTimer])
const startRecording = async () => {
setMicError(null)
@@ -141,6 +140,7 @@ export default function LiveVoiceCapture({
)
const blob = new Blob(chunksRef.current, { type: resolvedMime })
chunksRef.current = []
stopStream()
try {
assertVoiceMemoBlobSize(blob)
finishRecording(blob, resolvedMime, durationSec)