@thecb/components 3.1.3 → 3.1.4-beta.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "3.1.3",
3
+ "version": "3.1.4-beta.0",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -108,22 +108,6 @@ const PaymentFormCard = ({
108
108
  />
109
109
  </Box>
110
110
  )}
111
- {!!fees?.value && (
112
- <Alert
113
- heading="Processing Fee"
114
- text={`There is a processing fee of ${
115
- fees.type === "FLAT"
116
- ? `${displayCurrency(fees.value)}`
117
- : `${fees.value * 100}%`
118
- } ${ifElse(
119
- isNil,
120
- always(""),
121
- a => `with a minimum of ${displayCurrency(a)} `
122
- )(fees.minimumInCents)} on all card payments.`}
123
- variant="info"
124
- showQuitLink={false}
125
- />
126
- )}
127
111
  </FormInputColumn>
128
112
  </FormContainer>
129
113
  );
package/.tool-versions DELETED
@@ -1 +0,0 @@
1
- nodejs 10.13.0