Skip to content

Commit c7a1ebd

Browse files
authored
Remove the option to create fax based IVAs (#246)
1 parent fb2f606 commit c7a1ebd

File tree

3 files changed

+3
-18
lines changed

3 files changed

+3
-18
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "data-portal-ui",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"private": true,
55
"dependencies": {
66
"@fortawesome/fontawesome-svg-core": "~6.6.0",

src/components/account/newIVAsModal/newIVAModal.tsx

-15
Original file line numberDiff line numberDiff line change
@@ -100,21 +100,6 @@ const NewIVAModal = (props: NewIVAModalProps) => {
100100
SMS
101101
</Button>
102102
</Col>
103-
<Col>
104-
<Button
105-
className={clickedButton === IVAType.Fax ? "w-100" : "w-100"}
106-
variant={
107-
clickedButton === IVAType.Fax ? "quinary" : "outline-quinary"
108-
}
109-
onClick={() => {
110-
setClickedButton(IVAType.Fax);
111-
setDisabledButton(false);
112-
setPromptText("fax number");
113-
}}
114-
>
115-
Fax
116-
</Button>
117-
</Col>
118103
<Col>
119104
<Button
120105
className={

0 commit comments

Comments
 (0)