Merge remote-tracking branch 'upstream/dev' into refactor/persistent-memory

This commit is contained in:
Anish Sarkar 2026-04-09 15:33:23 +05:30
commit ab3cb0e1c5
63 changed files with 6320 additions and 4823 deletions

View file

@ -310,7 +310,8 @@ const TabsList = forwardRef<
}, [updateActiveIndicator]);
useEffect(() => {
requestAnimationFrame(updateActiveIndicator);
const id = requestAnimationFrame(updateActiveIndicator);
return () => cancelAnimationFrame(id);
}, [updateActiveIndicator]);
const scrollTabToCenter = useCallback((index: number) => {