Fix (hoepfully) eslint error for pipeline

Sascha created

Unfortunatly will this result in error for eslint on local machine... *sigh*

Change summary

webui/src/components/Header/Header.tsx | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)

Detailed changes

webui/src/components/Header/Header.tsx 🔗

@@ -83,7 +83,11 @@ function Header() {
       <AppBar position="fixed" className={classes.appBar}>
         <Toolbar>
           <Link to="/" className={classes.appTitle}>
-            <img src="/logo.svg" className={classes.logo} alt="git-bug logo" />
+            <img
+              src="/logo.svg"
+              className={classes.logo}
+              alt="git-bug logo"
+            />
             git-bug
           </Link>
           <div className={classes.filler} />
@@ -100,7 +104,11 @@ function Header() {
         onChange={handleTabClick}
         aria-label="nav tabs"
       >
-        <DisabledTabWithTooltip label="Code" value="/code" {...a11yProps(1)} />
+        <DisabledTabWithTooltip
+          label="Code"
+          value="/code"
+          {...a11yProps(1)}
+        />
         <Tab label="Bugs" value="/" href="/" {...a11yProps(2)} />
         <DisabledTabWithTooltip
           label="Pull Requests"