mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-11 13:16:38 +00:00
♻️ refactor
This commit is contained in:
@@ -13,7 +13,7 @@ import {
|
||||
XIcon
|
||||
} from "lucide-react";
|
||||
import { useTranslations } from "next-intl";
|
||||
import { Transition, TransitionChild } from "@headlessui/react";
|
||||
import { Transition } from "@headlessui/react";
|
||||
import * as React from "react";
|
||||
|
||||
export default function ProductUpdates({
|
||||
@@ -38,7 +38,7 @@ export default function ProductUpdates({
|
||||
const t = useTranslations();
|
||||
const [showMoreUpdatesText, setShowMoreUpdatesText] = React.useState(false);
|
||||
|
||||
// we delay the small text so that the user can notice it
|
||||
// we delay the small text animation so that the user can notice it
|
||||
React.useEffect(() => {
|
||||
const timeout = setTimeout(() => setShowMoreUpdatesText(true), 600);
|
||||
return () => clearTimeout(timeout);
|
||||
@@ -64,7 +64,6 @@ export default function ProductUpdates({
|
||||
isCollapsed && "hidden"
|
||||
)}
|
||||
>
|
||||
<>
|
||||
<div className="flex flex-col gap-1">
|
||||
<small
|
||||
className={cn(
|
||||
@@ -94,7 +93,6 @@ export default function ProductUpdates({
|
||||
show={data.updates.length > 0}
|
||||
/>
|
||||
</div>
|
||||
</>
|
||||
|
||||
<NewVersionAvailable
|
||||
version={data.latestVersion?.data}
|
||||
|
||||
Reference in New Issue
Block a user