BottomSheet: improve hero animation

This commit is contained in:
thislight 2024-10-09 17:33:27 +08:00
parent 71434e5293
commit 15e2bf3304
5 changed files with 11 additions and 9 deletions

View file

@ -185,7 +185,6 @@ function randomChoose<T extends any[]>(
K: T,
): T extends Array<infer E> ? E : never {
const idx = Math.floor(rn * K.length);
console.log(idx, K.length);
return K[idx];
}