Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 7, 2024
1 parent 7e7df56 commit 198c0a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion taxonium_website/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,9 @@ function App() {
<div className="flex items-center">
{window.screen.width >= 600 && ( // Hide the menu on mobile
<Select
value={new URL(window.location.href).pathname.split('/')[1] || ""}
value={
new URL(window.location.href).pathname.split("/")[1] || ""
}
onChange={(e) => setSelectedTree(e.target.value)}
className={window.width > 600 ? "mr-4" : "hidden"}
>
Expand Down

0 comments on commit 198c0a9

Please sign in to comment.