Skip to content

Commit

Permalink
only allow skip if theres no value
Browse files Browse the repository at this point in the history
  • Loading branch information
buckhalt committed Dec 20, 2024
1 parent 356eee6 commit 76f3922
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,11 @@ export default function GeospatialInterface({
/>
</motion.div>
</AnimatePresence>
<Button size="small" onClick={moveForward}>
<Button
size="small"
onClick={moveForward}
disabled={!!initialSelectionValue}
>
Skip
</Button>
</div>
Expand Down

0 comments on commit 76f3922

Please sign in to comment.