Skip to content

Commit 16d8c2b

Browse files
authored
Merge pull request #343 from AppQuality/hotfix
fix: Update iframe source URLs in FeedbackModal and FiscalResidenceModal
2 parents 8e35183 + 78b8727 commit 16d8c2b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/pages/Dashboard/FeedbackModal.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Button, Modal, ModalBody } from "@appquality/appquality-design-system";
2-
import { ChatLeftDots } from "react-bootstrap-icons";
2+
import { Headset } from "react-bootstrap-icons";
33
import { useTranslation } from "react-i18next";
44
import { useGetUsersMeQuery } from "src/services/tryberApi";
55
import styled from "styled-components";
@@ -27,7 +27,7 @@ export const FeedbackModal = ({
2727
<ModalBody>
2828
<iframe
2929
title="Feedback form"
30-
src={`https://form.jotform.com/213364740407351?testerId=T${user?.id}&email=${user?.email}`}
30+
src={`https://form.jotform.com/251940919244057?testerId=T${user?.id}&email=${user?.email}`}
3131
style={iFrameStyle}
3232
/>
3333
</ModalBody>
@@ -43,7 +43,7 @@ export const FeedbackButton = ({
4343
return (
4444
<StyledButton onClick={handleClick}>
4545
<Button kind="secondary" className="feedback-icon">
46-
<ChatLeftDots />
46+
<Headset />
4747
</Button>
4848
</StyledButton>
4949
);
@@ -73,6 +73,6 @@ const StyledButton = styled.div`
7373
transition: all 0.25s ease;
7474
width: 48px;
7575
height: 48px;
76-
line-height: 56px;
76+
line-height: 52px;
7777
}
7878
`;

src/pages/Profile/TabFiscal/components/FiscalResidenceModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const FiscalResidenceModal = ({ values }: { values: FiscalFormValues }) => {
4040
<ModalBody>
4141
<iframe
4242
title="fiscal address help form"
43-
src={`https://form.jotform.com/220122177762349?${iframeParams}`}
43+
src={`https://form.jotform.com/251940919244057?${iframeParams}`}
4444
style={iFrameStyle}
4545
/>
4646
</ModalBody>

0 commit comments

Comments
 (0)