diff --git a/src/CONST/index.ts b/src/CONST/index.ts index 02b2b5cee9e3..d072086b9907 100755 --- a/src/CONST/index.ts +++ b/src/CONST/index.ts @@ -1133,8 +1133,6 @@ const CONST = { REMOVE_HOLD: 'removeHold', REVIEW_DUPLICATES: 'reviewDuplicates', MARK_AS_CASH: 'markAsCash', - MARK_AS_RESOLVED: 'markAsResolved', - ADD_EXPENSE: 'addExpense', }, TRANSACTION_PRIMARY_ACTIONS: { REMOVE_HOLD: 'removeHold', diff --git a/src/components/EmptyStateComponent/index.tsx b/src/components/EmptyStateComponent/index.tsx index 807ce31b157c..972fa0e4e211 100644 --- a/src/components/EmptyStateComponent/index.tsx +++ b/src/components/EmptyStateComponent/index.tsx @@ -3,6 +3,7 @@ import isEmpty from 'lodash/isEmpty'; import React, {useMemo, useState} from 'react'; import {View} from 'react-native'; import Button from '@components/Button'; +import ButtonWithDropdownMenu from '@components/ButtonWithDropdownMenu'; import ImageSVG from '@components/ImageSVG'; import Lottie from '@components/Lottie'; import Text from '@components/Text'; @@ -114,19 +115,31 @@ function EmptyStateComponent({ ))} {children} {!isEmpty(buttons) && ( - - {buttons?.map(({buttonText, buttonAction, success, icon, isDisabled, style}) => ( -