auto-git:

[change] src/app/App.tsx
This commit is contained in:
2026-04-18 20:32:41 +02:00
parent 30130e1399
commit bd7ea1adc9

View File

@@ -15183,14 +15183,7 @@ export function App({ store, initialStatusMessage }: AppProps) {
role="group"
aria-label="Terrain brush tools"
>
{(
[
"raise",
"lower",
"smooth",
"flatten"
] as const satisfies readonly TerrainBrushTool[]
).map((tool) => (
{TERRAIN_BRUSH_TOOLS.map((tool) => (
<button
key={tool}
className={`viewport-panel__button ${armedTerrainBrushTool === tool ? "viewport-panel__button--active" : ""}`}