Skip to content

Commit

Permalink
style: move results higher in geocoding result
Browse files Browse the repository at this point in the history
  • Loading branch information
steveoh committed Jun 12, 2024
1 parent baa9e17 commit c310e23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Geocoding.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function Geocoding() {
(reason) => {
window.ugrc.cancelGeocode(reason).catch(handleError);
},
[handleError]
[handleError],
);

useEffect(() => {
Expand Down Expand Up @@ -180,6 +180,7 @@ export default function Geocoding() {
← Back
</Link>
<h2>Geocoding progress</h2>
<div className="pb-6">{getElementsByStatus(stats.status)}</div>
<progress className="h-16 w-full" value={progress}>
{progress}%
</progress>
Expand Down Expand Up @@ -220,7 +221,6 @@ export default function Geocoding() {
</dd>
</div>
</dl>
{getElementsByStatus(stats.status)}
</section>
</article>
);
Expand Down

0 comments on commit c310e23

Please sign in to comment.