in src/components/Recorder/index.tsx [63:75]
function handleTouchStart(e: TouchEvent) {
if (e.cancelable) {
e.preventDefault();
}
const touch0 = e.touches[0];
startY = touch0.pageY;
ts = Date.now();
setStatus('recording');
if (onStart) {
onStart();
}
}