From 9d7c8cdbf709018d85bb310dabea575a37ce6448 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Wed, 19 Mar 2025 22:45:52 +0100 Subject: [PATCH] Update synology page --- web/app/docs/create-vm/synology/page.tsx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/web/app/docs/create-vm/synology/page.tsx b/web/app/docs/create-vm/synology/page.tsx index 2f8903d..447ab5a 100644 --- a/web/app/docs/create-vm/synology/page.tsx +++ b/web/app/docs/create-vm/synology/page.tsx @@ -177,8 +177,7 @@ export default function Page() { Select DSM Version

- After selecting the model, you need to choose the DSM version you want to install. In some loaders (such as - arc), you may encounter additional options at this stage. + After selecting the model, you need to choose the DSM version you want to install.

Once the loader is booted, you can find your Synology device using:

- https://find.synology.com + https://finds.synology.com

Follow the on-screen steps to complete the DSM installation.

@@ -509,14 +508,13 @@ export default function Page() { ) } -// Añadir esta interfaz antes de la función TabGroup + interface Tab { id: string label: string content: React.ReactNode } -// Modificar la definición de la función TabGroup para incluir el tipo function TabGroup({ tabs }: { tabs: Tab[] }) { const [activeTab, setActiveTab] = useState(tabs[0].id)