diff --git a/components/system/Files/FileManager/useFolderContextMenu.ts b/components/system/Files/FileManager/useFolderContextMenu.ts index d19562e9..e908204f 100644 --- a/components/system/Files/FileManager/useFolderContextMenu.ts +++ b/components/system/Files/FileManager/useFolderContextMenu.ts @@ -141,11 +141,15 @@ const useFolderContextMenu = ( }, ], }, - MENU_SEPERATOR, - { - action: () => open("DevTools", { url: "dom" }), - label: "Inspect", - }, + ...(isDesktop + ? [ + MENU_SEPERATOR, + { + action: () => open("DevTools", { url: "dom" }), + label: "Inspect", + }, + ] + : []), ]; }, [ addToFolder,