UI: Improve instructions in recovery mode (#2394)

This commit is contained in:
catloversg
2025-11-23 00:28:02 +07:00
committed by GitHub
parent ce8852f3a2
commit 67119e6c9c

View File

@@ -198,11 +198,14 @@ export function RecoveryRoot({ softReset, crashReport, resetError }: IProps): Re
/>
</Paper>
)}
<Typography variant="h4" color={Settings.theme.warning}>
Do NOT take a screenshot of this screen. You must post the bug report text below.
</Typography>
<Paper sx={{ px: 2, pt: 1, pb: 2, mt: 2 }}>
<Typography variant="h5">{crashReport.title}</Typography>
<Box sx={{ my: 2 }}>
<TextField
label="Bug Report Text"
label={<Typography sx={{ fontSize: "20px" }}>Bug Report Text</Typography>}
value={crashReport.body}
variant="outlined"
color="secondary"
@@ -210,7 +213,10 @@ export function RecoveryRoot({ softReset, crashReport, resetError }: IProps): Re
fullWidth
rows={40}
spellCheck={false}
sx={{ "& .MuiOutlinedInput-root": { color: Settings.theme.secondary } }}
sx={{
"& .MuiOutlinedInput-root": { color: Settings.theme.secondary },
"& .MuiOutlinedInput-input": { scrollbarWidth: "thin" },
}}
/>
</Box>
<Tooltip title="Submitting an issue to GitHub really helps us improve the game!">