diff --git a/web/apps/photos/src/components/UserNameInputDialog.tsx b/web/apps/photos/src/components/UserNameInputDialog.tsx index 242fd357df..8cbbb14717 100644 --- a/web/apps/photos/src/components/UserNameInputDialog.tsx +++ b/web/apps/photos/src/components/UserNameInputDialog.tsx @@ -1,8 +1,12 @@ -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 { DialogContent, DialogTitle, Typography } from "@mui/material"; +import { + Box, + Dialog, + DialogContent, + DialogTitle, + Typography, +} from "@mui/material"; import { t } from "i18next"; export default function UserNameInputDialog({ @@ -18,13 +22,28 @@ export default function UserNameInputDialog({ }; return ( - - } /> - + + theme.colors.stroke.muted, + }} + > + {} + {t("enter_name")} - + {t("PUBLIC_UPLOADER_NAME_MESSAGE")} - + ); }