We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 211ec96 commit ba69692Copy full SHA for ba69692
src/components/CellRendererComponent.tsx
@@ -60,7 +60,8 @@ function CellRendererComponent<T>(props: Props<T>) {
60
// When activeKey becomes null at the end of a drag and the list reorders,
61
// the animated style may apply before the next paint, causing a flicker.
62
// Solution is to hold over the last animated value until the next onLayout.
63
- if (translate.value) {
+ // (Not required in web)
64
+ if (translate.value && !isWeb) {
65
heldTanslate.value = translate.value;
66
}
67
const t = activeKey ? translate.value : heldTanslate.value;
0 commit comments