Skip to content

Commit

Permalink
add cursor pointer to positions when editmode is active
Browse files Browse the repository at this point in the history
  • Loading branch information
KnotzerIO committed Mar 29, 2024
1 parent 63a1695 commit c7db346
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/IndoorMapWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ function IndoorMapWrapper() {
<Positions
positionRadius={positionRadius}
handlePositionClick={handlePositionClick}
className={isEditMode ? "opacity-100" : "opacity-0"}
className={
isEditMode ? "opacity-100 cursor-pointer" : "opacity-0"
}
navigation={navigation}
/>
</MapBackground>
Expand Down

0 comments on commit c7db346

Please sign in to comment.