style: format frontend with prettier

Mechanical one-shot pass of pnpm format over src/, tests/, tools/, and
root configs. No functional changes; build and type-check verified.
This commit is contained in:
2026-07-04 20:23:32 +01:00
parent 32c6ae09d6
commit 827e1a8ecf
152 changed files with 9204 additions and 7445 deletions
+8 -8
View File
@@ -1,12 +1,12 @@
import { SortControl } from "./toolbar/SortControl";
import { ToolbarFilters } from "./toolbar/ToolbarFilters";
import { ToolbarSearch } from "./toolbar/ToolbarSearch";
import { ToolbarTitle } from "./toolbar/ToolbarTitle";
import { useToolbarSearch } from "./toolbar/useToolbarSearch";
import { ZoomControl } from "./toolbar/ZoomControl";
import { SortControl } from './toolbar/SortControl'
import { ToolbarFilters } from './toolbar/ToolbarFilters'
import { ToolbarSearch } from './toolbar/ToolbarSearch'
import { ToolbarTitle } from './toolbar/ToolbarTitle'
import { useToolbarSearch } from './toolbar/useToolbarSearch'
import { ZoomControl } from './toolbar/ZoomControl'
export function Toolbar() {
const searchState = useToolbarSearch();
const searchState = useToolbarSearch()
return (
<div className="relative z-40 shrink-0 border-b border-white/[0.06] bg-gray-950/80 backdrop-blur-xl">
@@ -20,5 +20,5 @@ export function Toolbar() {
</div>
<ToolbarFilters />
</div>
);
)
}