diff --git a/src/components/pages/profile/[name]/tabs/OwnershipTab/sections/ExpirySection/ExpirySection.test.tsx b/src/components/pages/profile/[name]/tabs/OwnershipTab/sections/ExpirySection/ExpirySection.test.tsx index f0a7c1fd2..3aac3cd72 100644 --- a/src/components/pages/profile/[name]/tabs/OwnershipTab/sections/ExpirySection/ExpirySection.test.tsx +++ b/src/components/pages/profile/[name]/tabs/OwnershipTab/sections/ExpirySection/ExpirySection.test.tsx @@ -4,8 +4,8 @@ import { describe, expect, it, vi } from 'vitest' import { GRACE_PERIOD } from '@app/utils/constants' -import { ExpirySection } from './ExpirySection' import { makeMockIntersectionObserver } from '../../../../../../../../../test/mock/makeMockIntersectionObserver' +import { ExpirySection } from './ExpirySection' vi.mock('./hooks/useExpiryDetails', () => ({ useExpiryDetails: ({ name }: any) => { @@ -49,7 +49,7 @@ vi.mock('./hooks/useExpiryActions', () => ({ makeMockIntersectionObserver() describe('ExpirySection', () => { - it('should be able to open earnify button modal', async () => { + it.skip('should be able to open earnify button modal', async () => { render() expect(screen.getByText('action.setReminder')).toBeVisible() expect(screen.getByText('action.extend')).toBeVisible() diff --git a/src/components/pages/profile/[name]/tabs/OwnershipTab/sections/ExpirySection/ExpirySection.tsx b/src/components/pages/profile/[name]/tabs/OwnershipTab/sections/ExpirySection/ExpirySection.tsx index d960a07c8..47f366c94 100644 --- a/src/components/pages/profile/[name]/tabs/OwnershipTab/sections/ExpirySection/ExpirySection.tsx +++ b/src/components/pages/profile/[name]/tabs/OwnershipTab/sections/ExpirySection/ExpirySection.tsx @@ -159,13 +159,14 @@ export const ExpirySection = ({ name, details }: Props) => { keepMenuOnTop width={220} items={[ - { - value: 'earnifi', - label: t('tabs.more.misc.reminderOptions.bankless'), - onClick: () => { - setShowEarnifiDialog(true) - }, - }, + // Put this back once the reminders are working again + // { + // value: 'earnifi', + // label: t('tabs.more.misc.reminderOptions.bankless'), + // onClick: () => { + // setShowEarnifiDialog(true) + // }, + // }, ...calendarOptions.map((option) => ({ label: t(option.label, { ns: 'profile' }), onClick: () =>