File tree 1 file changed +11
-8
lines changed
src/components/animations 1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ const Plan = () => {
71
71
initial = { { opacity : 0 , scale : 0 } }
72
72
animate = { { opacity : 1 , scale : 1 } }
73
73
exit = { { opacity : 0 , scale : 0 } }
74
- transition = { { duration : 0.1 } }
74
+ transition = { { duration : 0.05 } }
75
75
className = { cn ( "text-sm text-center font-bold" , {
76
76
"text-primary-foreground" : activeIdx === plan . id ,
77
77
} ) }
@@ -113,13 +113,16 @@ const Subscriptions = ({
113
113
{ activeIdx !== 2 ? (
114
114
< motion . div key = "collapsed-subs" className = "flex gap-2" >
115
115
{ subscriptions . map ( ( sub ) => (
116
- < motion . p
117
- key = { `sub-${ sub } ` }
118
- className = "text-sm size-full rounded-full flex items-center justify-center relative"
119
- layoutId = { `sub-${ sub } ` }
120
- >
121
- { sub }
122
- </ motion . p >
116
+ < >
117
+ < motion . p
118
+ key = { `sub-${ sub } ` }
119
+ className = "text-sm size-full rounded-full flex items-center justify-center relative"
120
+ layoutId = { `sub-${ sub } ` }
121
+ >
122
+ { sub }
123
+ </ motion . p >
124
+ < span > { " . " } </ span >
125
+ </ >
123
126
) ) }
124
127
</ motion . div >
125
128
) : (
You can’t perform that action at this time.
0 commit comments