Skip to content

Commit 9b18b00

Browse files
committed
remove unnecessary prop from AnimatePresence in SnippetList component
1 parent 8a0703b commit 9b18b00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/SnippetList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const SnippetList = () => {
3535
return (
3636
<>
3737
<motion.ul role="list" className="snippets">
38-
<AnimatePresence mode="popLayout" presenceAffectsLayout>
38+
<AnimatePresence mode="popLayout">
3939
{fetchedSnippets.map((currentSnippet, idx) => {
4040
return (
4141
<motion.li

0 commit comments

Comments
 (0)