Skip to content

Commit

Permalink
Fixes type issue on headless mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
abtestingalpha committed Oct 28, 2024
1 parent 45ef845 commit 2b509c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export function TransactionPopoverContainer({
}) {
return (
<Transition
as={Fragment}
as={Fragment as any}
enter="transition ease-out duration-200"
enterFrom="opacity-0 translate-y-1"
enterTo="opacity-100 translate-y-0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export function TransactionPopoverContainer({
}) {
return (
<Transition
as={Fragment}
as={Fragment as any}
enter="transition ease-out duration-200"
enterFrom="opacity-0 translate-y-1"
enterTo="opacity-100 translate-y-0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export function LandingNav() {
</div>

<Transition
as={Fragment}
as={Fragment as any}
enter="duration-100 ease-out"
enterFrom=" opacity-0"
enterTo=" opacity-100"
Expand Down Expand Up @@ -161,7 +161,7 @@ export function PopoverPanelContainer({
}) {
return (
<Transition
as={Fragment}
as={Fragment as any}
enter="transition ease-out duration-200"
enterFrom="opacity-0 translate-y-1"
enterTo="opacity-100 translate-y-0"
Expand Down

0 comments on commit 2b509c1

Please sign in to comment.