From 2c5fa193541eb8b74974731d01312f73951bca17 Mon Sep 17 00:00:00 2001
From: eug-vs <eug-vs@keemail.me>
Date: Sat, 18 Apr 2020 20:26:32 +0300
Subject: style: correct some errors with eslint --fix

---
 src/lib/Window/WindowSurface.tsx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'src/lib/Window/WindowSurface.tsx')

diff --git a/src/lib/Window/WindowSurface.tsx b/src/lib/Window/WindowSurface.tsx
index a65e398..1900901 100644
--- a/src/lib/Window/WindowSurface.tsx
+++ b/src/lib/Window/WindowSurface.tsx
@@ -22,7 +22,7 @@ const useStyles = makeStyles(theme => ({
     '& a.MuiTypography-root': {
       color: theme.palette.primary.light,
     },
-  }
+  },
 }));
 
 
@@ -32,12 +32,12 @@ const WindowSurface: React.FC<PropTypes> = ({ size, position, children }) => {
   return (
     <Paper
       variant="outlined"
-      style={{...size, ...position}}
+      style={{ ...size, ...position }}
       className={classes.surface}
     >
       {children}
     </Paper>
-  )
+  );
 };
 
 
-- 
cgit v1.2.3