From 13b09ae94ab4eb03154f800e89192b739b3c7cc9 Mon Sep 17 00:00:00 2001 From: CatLover <152669316+catloversg@users.noreply.github.com> Date: Fri, 20 Sep 2024 16:23:10 +0700 Subject: [PATCH] Run prettier --- src/ui/React/ImportSave/ImportSave.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/React/ImportSave/ImportSave.tsx b/src/ui/React/ImportSave/ImportSave.tsx index 877644928..eeb878006 100644 --- a/src/ui/React/ImportSave/ImportSave.tsx +++ b/src/ui/React/ImportSave/ImportSave.tsx @@ -48,10 +48,10 @@ const useStyles = makeStyles()((theme: Theme) => ({ "& .MuiTable-root": { "& .MuiTableCell-root": { borderBottom: `1px solid ${Settings.theme.welllight}`, - width: "30%" + width: "30%", }, "& .MuiTableCell-root:last-child": { - width: "10%" + width: "10%", }, "& .MuiTableHead-root .MuiTableRow-root": { @@ -92,7 +92,7 @@ const playerSkills: (keyof Skills)[] = ["hacking", "strength", "defense", "dexte let initialAutosave = 0; -export const ImportSave = (props: { saveData: SaveData; automatic: boolean; }): JSX.Element => { +export const ImportSave = (props: { saveData: SaveData; automatic: boolean }): JSX.Element => { const { classes } = useStyles(); const [importData, setImportData] = useState(); const [currentData, setCurrentData] = useState();