From aef3211beebd2b58f100641aab64a92b380a986a Mon Sep 17 00:00:00 2001 From: Team1280Programming Date: Thu, 15 Feb 2024 00:52:47 +0000 Subject: [PATCH] style: format --- src/app/document/view/[slug]/VersionChooser.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/document/view/[slug]/VersionChooser.tsx b/src/app/document/view/[slug]/VersionChooser.tsx index 55f3027..ef2b62e 100644 --- a/src/app/document/view/[slug]/VersionChooser.tsx +++ b/src/app/document/view/[slug]/VersionChooser.tsx @@ -8,9 +8,7 @@ const VersionChooser = ({ slug, }: Readonly<{ doc: Document; slug: string }>) => { const { file } = doc - const { - latest, - } = doc.manifest + const { latest } = doc.manifest const fileEnding = file === 'other' ? '' : `.${file}` const [selectedRevision, setSelectedRevision] = useState(latest) // Initialize the selected revision with the latest revision @@ -36,7 +34,9 @@ const VersionChooser = ({