diff options
author | Michael Muré <batolettre@gmail.com> | 2021-03-21 19:45:26 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2021-03-21 19:45:26 +0100 |
commit | fbf7c48b9ec53f94a2f56a3405b381f598c38f1a (patch) | |
tree | 0c31a26c22382e706feb01eb6f74319c1a8b1a56 | |
parent | aa91f39cdf98217cb0b26c70f344148275617220 (diff) | |
download | git-bug-fbf7c48b9ec53f94a2f56a3405b381f598c38f1a.tar.gz |
webui: fix eslint?
-rw-r--r-- | webui/src/components/Header/Header.tsx | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/webui/src/components/Header/Header.tsx b/webui/src/components/Header/Header.tsx index 70b8c9ff..975944d7 100644 --- a/webui/src/components/Header/Header.tsx +++ b/webui/src/components/Header/Header.tsx @@ -83,11 +83,7 @@ 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} /> @@ -104,11 +100,7 @@ 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" |