diff --git a/web/apps/photos/src/components/UserNameInputDialog.tsx b/web/apps/photos/src/components/UserNameInputDialog.tsx
index 73d1169fb8..8a709afa29 100644
--- a/web/apps/photos/src/components/UserNameInputDialog.tsx
+++ b/web/apps/photos/src/components/UserNameInputDialog.tsx
@@ -1,7 +1,8 @@
-import DialogBox from "@ente/shared/components/DialogBox/";
+import DialogBox from "@ente/shared/components/DialogBox/base";
+import DialogIcon from "@ente/shared/components/DialogBox/DialogIcon";
import SingleInputForm from "@ente/shared/components/SingleInputForm";
import AutoAwesomeOutlinedIcon from "@mui/icons-material/AutoAwesomeOutlined";
-import { Typography } from "@mui/material";
+import { DialogContent, DialogTitle, Typography } from "@mui/material";
import { t } from "i18next";
export default function UserNameInputDialog({
@@ -15,31 +16,30 @@ export default function UserNameInputDialog({
onClose();
await onNameSubmit(inputValue);
};
+
return (
- ,
- }}
- >
-
- {t("PUBLIC_UPLOADER_NAME_MESSAGE")}
-
-
+
+ } />
+
+ {t("ENTER_NAME")}
+
+
+
+ {t("PUBLIC_UPLOADER_NAME_MESSAGE")}
+
+
+
);
}