style: apply prettier formatting to svelte and ts files
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -493,8 +493,10 @@
|
||||
seek(percentage);
|
||||
}}
|
||||
onkeydown={(e) => {
|
||||
if (e.key === "ArrowRight") seek(((playbackProgress + 1) / data.recording.duration) * 100);
|
||||
else if (e.key === "ArrowLeft") seek(((playbackProgress - 1) / data.recording.duration) * 100);
|
||||
if (e.key === "ArrowRight")
|
||||
seek(((playbackProgress + 1) / data.recording.duration) * 100);
|
||||
else if (e.key === "ArrowLeft")
|
||||
seek(((playbackProgress - 1) / data.recording.duration) * 100);
|
||||
}}
|
||||
>
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user