ordering-ui-admin-external 1.14.0 → 1.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_bundles/{ordering-ui-admin.1a09d41a4e6cd3d1e1cf.js → ordering-ui-admin.7260e823d98951f8d36d.js} +2 -2
- package/_modules/components/Loyalty/RewardsPrograms/index.js +3 -6
- package/package.json +1 -1
- package/src/components/Loyalty/RewardsPrograms/index.js +1 -1
- /package/_bundles/{ordering-ui-admin.1a09d41a4e6cd3d1e1cf.js.LICENSE.txt → ordering-ui-admin.7260e823d98951f8d36d.js.LICENSE.txt} +0 -0
|
@@ -53,12 +53,9 @@ var RewardsPrograms = function RewardsPrograms() {
|
|
|
53
53
|
name: t('LEVELS', 'Levels'),
|
|
54
54
|
description: t('LEVELS_DESCRIPTION', 'Setup different loyalty levels for your users.'),
|
|
55
55
|
icon: /*#__PURE__*/_react.default.createElement(_reactBootstrapIcons.BarChartSteps, null)
|
|
56
|
-
},
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
description: t('GIFT_CARD_DESCRIPTION', 'Setup different gift cards for your customers.'),
|
|
60
|
-
icon: /*#__PURE__*/_react.default.createElement(_reactBootstrapIcons.Gift, null)
|
|
61
|
-
}, {
|
|
56
|
+
},
|
|
57
|
+
// { key: 'gift_card', name: t('GIFT_CARD', 'Gift Card'), description: t('GIFT_CARD_DESCRIPTION', 'Setup different gift cards for your customers.'), icon: <Gift /> },
|
|
58
|
+
{
|
|
62
59
|
key: 'cashback',
|
|
63
60
|
name: t('CASH_WALLET', 'Cash wallet'),
|
|
64
61
|
description: t('CASH_WALLET_DESCRIPTION', 'Cash wallet general and per business setup.'),
|
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@ export const RewardsPrograms = () => {
|
|
|
29
29
|
const walletList = [
|
|
30
30
|
{ key: 'credit_point', name: t('POINTS_WALLET', 'Points wallet'), description: t('POINTS_WALLET_DESCRIPTION', 'Points wallet general and per business setup.'), icon: <Cash /> },
|
|
31
31
|
{ key: 'levels', name: t('LEVELS', 'Levels'), description: t('LEVELS_DESCRIPTION', 'Setup different loyalty levels for your users.'), icon: <BarChartSteps /> },
|
|
32
|
-
{ key: 'gift_card', name: t('GIFT_CARD', 'Gift Card'), description: t('GIFT_CARD_DESCRIPTION', 'Setup different gift cards for your customers.'), icon: <Gift /> },
|
|
32
|
+
// { key: 'gift_card', name: t('GIFT_CARD', 'Gift Card'), description: t('GIFT_CARD_DESCRIPTION', 'Setup different gift cards for your customers.'), icon: <Gift /> },
|
|
33
33
|
{ key: 'cashback', name: t('CASH_WALLET', 'Cash wallet'), description: t('CASH_WALLET_DESCRIPTION', 'Cash wallet general and per business setup.'), icon: <Cash /> }
|
|
34
34
|
]
|
|
35
35
|
|