diff --git a/web/apps/photos/src/components/Chip.tsx b/web/apps/photos/src/components/Chip.tsx
deleted file mode 100644
index 0336dc9c34..0000000000
--- a/web/apps/photos/src/components/Chip.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import { Button, ButtonProps, styled } from "@mui/material";
-import { CSSProperties } from "@mui/material/styles/createTypography";
-
-export const Chip = styled((props: ButtonProps) => (
-
-))(({ theme }) => ({
- ...(theme.typography.small as CSSProperties),
- padding: "8px",
-}));
diff --git a/web/apps/photos/src/components/PhotoViewer/FileInfo/index.tsx b/web/apps/photos/src/components/PhotoViewer/FileInfo/index.tsx
index 71861695a3..c2a04f1319 100644
--- a/web/apps/photos/src/components/PhotoViewer/FileInfo/index.tsx
+++ b/web/apps/photos/src/components/PhotoViewer/FileInfo/index.tsx
@@ -16,6 +16,7 @@ import {
type ParsedMetadataDate,
} from "@/media/file-metadata";
import { FileType } from "@/media/file-type";
+import { ChipButton } from "@/new/photos/components/mui/ChipButton";
import { FilePeopleList } from "@/new/photos/components/PeopleList";
import { PhotoDateTimePicker } from "@/new/photos/components/PhotoDateTimePicker";
import { fileInfoDrawerZIndex } from "@/new/photos/components/utils/z-index";
@@ -49,7 +50,6 @@ import {
styled,
Typography,
} from "@mui/material";
-import { Chip } from "components/Chip";
import LinkButton from "components/pages/gallery/LinkButton";
import { t } from "i18next";
import { GalleryContext } from "pages/gallery";
@@ -288,14 +288,14 @@ export const FileInfo: React.FC = ({
collectionNameMap.has(collectionID),
)
?.map((collectionID) => (
-
onCollectionChipClick(collectionID)
}
>
{collectionNameMap.get(collectionID)}
-
+
))}
diff --git a/web/packages/new/photos/components/mui/ChipButton.tsx b/web/packages/new/photos/components/mui/ChipButton.tsx
new file mode 100644
index 0000000000..2bf7ec7e6b
--- /dev/null
+++ b/web/packages/new/photos/components/mui/ChipButton.tsx
@@ -0,0 +1,8 @@
+import { Button, type ButtonProps, styled } from "@mui/material";
+
+export const ChipButton = styled((props: ButtonProps) => (
+
+))(({ theme }) => ({
+ ...theme.typography.small,
+ padding: "8px",
+}));