Skip to content

Commit

Permalink
fix(autoAnimate): fix incorrect destructuring of auto animate
Browse files Browse the repository at this point in the history
  • Loading branch information
Clm-Roig committed Sep 27, 2022
1 parent b51771c commit c578705
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const DefaultCompletionsForm: FC<Props> = ({
});
const themeMode = useAppSelector(selectThemeMode);
const theme = useTheme();
const animateRef = useAutoAnimate();
const [animateRef] = useAutoAnimate();

const fieldsetSx = {
bgcolor: themeMode === ThemeMode.LIGHT ? theme.palette.grey[100] : theme.palette.grey[900],
Expand Down

0 comments on commit c578705

Please sign in to comment.