Skip to content

Commit

Permalink
fix(#226): make the map sharing button back again and disable the sub…
Browse files Browse the repository at this point in the history
…scription
  • Loading branch information
navid-kalaei committed Sep 1, 2024
1 parent d6b70b0 commit 798439b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions components/MapSharingDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import useTranslation from 'next-translate/useTranslation'
import { Button, Dropdown, Menu } from 'antd'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import CopyURLToClipboardButton from './CopyURLToClipboardButton'
// import MapSharingModal from './MapSharingModal'
import SubscriptionModal from './SubscriptionModal'
import MapSharingModal from './MapSharingModal'
// import SubscriptionModal from './SubscriptionModal'


const { Item } = Menu
Expand All @@ -16,15 +16,15 @@ const menu = (
right: 40,
}}
>
<Item
{/* <Item
icon={
<FontAwesomeIcon
icon={["fas", "bell"]}
/>
}
>
<SubscriptionModal/>
</Item>
</Item> */}

<Item
icon={
Expand All @@ -35,15 +35,15 @@ const menu = (
<CopyURLToClipboardButton/>
</Item>

{/* <Item
<Item
icon={
<FontAwesomeIcon
icon="code"
/>
}
>
<MapSharingModal/>
</Item> */}
</Item>
</Menu>
)

Expand Down

0 comments on commit 798439b

Please sign in to comment.