Formatting

This commit is contained in:
Aria
2025-12-03 11:13:21 -06:00
parent 1d4f2b81d8
commit 196f70ab6b
+1 -4
View File
@@ -619,8 +619,5 @@ export const releaseAudioNode = (node) => {
// Once the `anchor` node has ended, release all nodes in `toCleanup`
export const cleanupOnEnd = (anchor, toCleanup) => {
onceEnded(
anchor,
() => toCleanup.forEach((n) => releaseAudioNode(n)),
);
onceEnded(anchor, () => toCleanup.forEach((n) => releaseAudioNode(n)));
};