Commit 9c0a7a42 authored by Robert Knight's avatar Robert Knight

Remove unnecessary JSX close tags

parent 9ba3c21e
...@@ -69,7 +69,7 @@ function TopBar({ ...@@ -69,7 +69,7 @@ function TopBar({
{!isSidebar && ( {!isSidebar && (
<div className="top-bar__inner content"> <div className="top-bar__inner content">
<StreamSearchInput /> <StreamSearchInput />
<div className="top-bar__expander"></div> <div className="top-bar__expander" />
<button <button
className="top-bar__btn top-bar__help-btn" className="top-bar__btn top-bar__help-btn"
onClick={onShowHelpPanel} onClick={onShowHelpPanel}
...@@ -85,7 +85,7 @@ function TopBar({ ...@@ -85,7 +85,7 @@ function TopBar({
{isSidebar && ( {isSidebar && (
<div className="top-bar__inner content"> <div className="top-bar__inner content">
<GroupList className="GroupList" auth={auth} /> <GroupList className="GroupList" auth={auth} />
<div className="top-bar__expander"></div> <div className="top-bar__expander" />
{pendingUpdateCount > 0 && ( {pendingUpdateCount > 0 && (
<a <a
className="top-bar__apply-update-btn" className="top-bar__apply-update-btn"
...@@ -104,7 +104,7 @@ function TopBar({ ...@@ -104,7 +104,7 @@ function TopBar({
title="Share this page" title="Share this page"
aria-label="Share this page" aria-label="Share this page"
> >
<i className="h-icon-annotation-share"></i> <i className="h-icon-annotation-share" />
</button> </button>
)} )}
<button <button
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment