{t('you_dont_have_any_add_ons_on_your_account')}
diff --git a/services/web/frontend/js/features/subscription/components/dashboard/states/active/change-plan/modals/writefull-bundle-management-modal.tsx b/services/web/frontend/js/features/subscription/components/dashboard/states/active/change-plan/modals/writefull-bundle-management-modal.tsx index ef512ddec5..d5933d137a 100644 --- a/services/web/frontend/js/features/subscription/components/dashboard/states/active/change-plan/modals/writefull-bundle-management-modal.tsx +++ b/services/web/frontend/js/features/subscription/components/dashboard/states/active/change-plan/modals/writefull-bundle-management-modal.tsx @@ -8,8 +8,13 @@ import OLModal, { OLModalTitle, } from '@/features/ui/components/ol/ol-modal' import OLButton from '@/features/ui/components/ol/ol-button' +import sparkle from '@/shared/svgs/sparkle.svg' +import { Dropdown, DropdownMenu, DropdownToggle } from 'react-bootstrap-5' +import OLDropdownMenuItem from '@/features/ui/components/ol/ol-dropdown-menu-item' +import MaterialIcon from '@/shared/components/material-icon' +import { ADD_ON_NAME } from '@/features/subscription/data/add-on-codes' -export function WritefullBundleManagementModal() { +function WritefullBundleManagementModal() { const modalId: SubscriptionDashModalIds = 'manage-on-writefull' const { t } = useTranslation() const { handleCloseModal, modalIdShown } = useSubscriptionDashboardContext() @@ -49,3 +54,64 @@ export function WritefullBundleManagementModal() { ) } + +function WritefullGrantedAddOn({ + handleManageOnWritefull, +}: { + handleManageOnWritefull: () => void +}) { + const { t } = useTranslation() + return ( +