Skip to content

Commit

Permalink
fix: Resolve JSX syntax errors in GensploreView component
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed Dec 12, 2024
1 parent 338d4f5 commit a78b641
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions gensplore-component/src/components/GensploreView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -579,9 +579,8 @@ if (hit1 === -1) {
/>
)}

{
featureOffcanvasOpen &&
<Offcanvas isOpen={featureOffcanvasOpen} onClose={() => setFeatureOffcanvasOpen(false)}>
{featureOffcanvasOpen && (
<Offcanvas isOpen={featureOffcanvasOpen} onClose={() => setFeatureOffcanvasOpen(false)}>
<table className="min-w-full divide-y divide-gray-200">
<thead>
<tr>
Expand Down Expand Up @@ -646,10 +645,11 @@ if (hit1 === -1) {
))}
</tbody>
</table>
</Offcanvas>
</Offcanvas>
)}
</div>
</>
);
}
</>
);
}

export default GensploreView;
export default GensploreView;

0 comments on commit a78b641

Please sign in to comment.