Skip to content

Commit

Permalink
removed animate height
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Gordon committed Apr 11, 2024
1 parent 506da99 commit a26d450
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/app/@auth/(.)search/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,12 @@ export default function Page() {
{payee !== '' && (
<motion.div
key='clear'
initial={{ opacity: 0, height: 0 }}
initial={{ opacity: 0, }}
animate={{
opacity: 1,
height: 'auto',
}}
transition={{ duration: 0.4, ease: 'easeInOut' }}
exit={{ opacity: 0, height: 0 }}
exit={{ opacity: 0 }}
className='ml-auto grid content-center justify-end'
>
{isAnAddress &&
Expand Down

0 comments on commit a26d450

Please sign in to comment.