Skip to content

Commit

Permalink
🐛 Fix AbstractOverlay display-name
Browse files Browse the repository at this point in the history
  • Loading branch information
JaeSeoKim committed Aug 30, 2023
1 parent 639885a commit e3e0b09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export interface AbstractOverlayProps {
export const AbstractOverlay = React.forwardRef<
kakao.maps.AbstractOverlay,
AbstractOverlayProps
>(({ draw, onAdd, onRemove, onCreate }, ref) => {
>(function AbstractOverlay({ draw, onAdd, onRemove, onCreate }, ref) {
const map = useMap()

const reactAbstractOverlay = useMemo(() => {
Expand Down

0 comments on commit e3e0b09

Please sign in to comment.