Skip to content

Commit

Permalink
chore: use regular comments instead of jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
benschlegel committed Nov 26, 2023
1 parent f4d79a0 commit 0aa04d8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/pin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,8 @@ export const Pin = (props: PropsWithChildren<PinProps>) => {

const pinElement = new google.maps.marker.PinElement(pinViewOptions);

/**
* Set glyph to glyph container if children are present (rendered via portal).
* If both props.glyph and props.children are present, props.children takes priority.
* */
// Set glyph to glyph container if children are present (rendered via portal).
// If both props.glyph and props.children are present, props.children takes priority.
if (props.children) {
pinElement.glyph = glyphContainer;
}
Expand Down

0 comments on commit 0aa04d8

Please sign in to comment.