diff --git a/web/packages/gallery/components/FileInfo.tsx b/web/packages/gallery/components/FileInfo.tsx
index 7666f1e6f6..51824dc887 100644
--- a/web/packages/gallery/components/FileInfo.tsx
+++ b/web/packages/gallery/components/FileInfo.tsx
@@ -43,7 +43,6 @@ import {
} from "@/media/file-metadata";
import { FileType } from "@/media/file-type";
import { FileDateTimePicker } from "@/new/photos/components/FileDateTimePicker";
-import { ChipButton } from "@/new/photos/components/mui/ChipButton";
import { FilePeopleList } from "@/new/photos/components/PeopleList";
import {
confirmDisableMapsDialogAttributes,
@@ -77,6 +76,7 @@ import TextSnippetOutlinedIcon from "@mui/icons-material/TextSnippetOutlined";
import VideocamOutlinedIcon from "@mui/icons-material/VideocamOutlined";
import {
Box,
+ Button,
CircularProgress,
IconButton,
Link,
@@ -84,6 +84,7 @@ import {
styled,
TextField,
Typography,
+ type ButtonProps,
type DialogProps,
} from "@mui/material";
import { Formik } from "formik";
@@ -1045,3 +1046,10 @@ const ExifItem = styled("div")`
flex-direction: column;
gap: 4px;
`;
+
+const ChipButton = styled((props: ButtonProps) => (
+
+))(({ theme }) => ({
+ ...theme.typography.small,
+ padding: "8px",
+}));
diff --git a/web/packages/new/photos/components/mui/ChipButton.tsx b/web/packages/new/photos/components/mui/ChipButton.tsx
deleted file mode 100644
index 2bf7ec7e6b..0000000000
--- a/web/packages/new/photos/components/mui/ChipButton.tsx
+++ /dev/null
@@ -1,8 +0,0 @@
-import { Button, type ButtonProps, styled } from "@mui/material";
-
-export const ChipButton = styled((props: ButtonProps) => (
-
-))(({ theme }) => ({
- ...theme.typography.small,
- padding: "8px",
-}));