Skip to content

Commit

Permalink
fix jss warning
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Cassidy <steve.cassidy@mq.edu.au>
  • Loading branch information
stevecassidy committed Oct 22, 2023
1 parent cef05ec commit 9f7884a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/components/record/recordStepper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type RecordStepperProps = {
views: {[key: string]: any};
};

const useStyles = createUseStyles(() => ({
const useStyles = createUseStyles({
stepperStyle: {
overflowY: 'hidden',
overflowX: 'auto',
Expand All @@ -53,7 +53,7 @@ const useStyles = createUseStyles(() => ({
borderRadius: 2,
},
},
}));
});

export default function RecordStepper(props: RecordStepperProps) {
const classes = useStyles();
Expand Down

0 comments on commit 9f7884a

Please sign in to comment.