We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19bba43 commit cf87975Copy full SHA for cf87975
web-vite/src/app/inputs.tsx
@@ -1,5 +1,5 @@
1
interface PanelInputsProps {
2
- area: any;
+ area: number;
3
}
4
5
export function PanelInputs(props: PanelInputsProps) {
@@ -11,7 +11,7 @@ export function PanelInputs(props: PanelInputsProps) {
11
<h3>Area of Interest (AOI)</h3>
12
<small>Zoom and pan the map to set the AOI for stats </small>
13
<p>
14
- Currently selected: <strong>{area} km²</strong>
+ Currently selected: <strong>{area || "-"} km²</strong>
15
</p>
16
</section>
17
<section>
0 commit comments