diff --git a/webui/src/components/ModuleReferenceList.tsx b/webui/src/components/ModuleReferenceList.tsx
index ece1d59..d4ca125 100644
--- a/webui/src/components/ModuleReferenceList.tsx
+++ b/webui/src/components/ModuleReferenceList.tsx
@@ -5,6 +5,7 @@ import PackageIcon from 'lucide-react/dist/esm/icons/box';
import FileIcon from 'lucide-react/dist/esm/icons/file';
import { PropsWithChildren } from 'react';
+import { FilePathMenu } from '~/components/FilePathMenu';
import type { AtlasModuleRef, PartialAtlasBundle } from '~core/data/types';
type ModuleReferenceListProps = PropsWithChildren<{
@@ -37,27 +38,32 @@ function ModuleImportLink(props: ModuleImportLinkProps) {
const Icon = props.reference.package ? PackageIcon : FileIcon;
return (
-
-
-
-
- {props.reference.relativePath}
-
- →
-
-
+
+
+
+ {props.reference.relativePath}
+
+ →
+
+
+
);
}