Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
catloversg committed Sep 20, 2024
1 parent fbb7f8a commit 13b09ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/React/ImportSave/ImportSave.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -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<ImportData | undefined>();
const [currentData, setCurrentData] = useState<ImportData | undefined>();
Expand Down

0 comments on commit 13b09ae

Please sign in to comment.