Skip to content

Commit ac9e66a

Browse files
committed
fixup! feat(eap): add ExplanatoryNote components in both EAP form replacing tooltip
1 parent 9036b1d commit ac9e66a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

  • app/src

app/src/components/ExplanatoryNote/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function ExplanatoryNote(props: Props) {
2424
name={undefined}
2525
heading={heading}
2626
modalContent={content}
27-
icon={(<InformationLineIcon className={styles.icon} />)}
27+
icon={<InformationLineIcon className={styles.icon} />}
2828
ariaLabel={ariaLabel}
2929
title={title}
3030
/>

app/src/views/AccountMyFormsEap/EapTableActions/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ function EapTableActions(props: Props) {
152152
)}
153153
{type === 'development' && (
154154
<>
155-
{environment === 'testing' && eap.eap_type === EAP_TYPE_SIMPLIFIED && isCreated && (
155+
{environment === 'development' && eap.eap_type === EAP_TYPE_SIMPLIFIED && isCreated && (
156156
<Link
157157
to="eapSimplifiedExport"
158158
urlParams={{ eapId: eap.id }}
@@ -165,7 +165,7 @@ function EapTableActions(props: Props) {
165165
{strings.previewExportLinkLabel}
166166
</Link>
167167
)}
168-
{environment === 'testing' && eap.eap_type === EAP_TYPE_FULL && isCreated && (
168+
{environment === 'development' && eap.eap_type === EAP_TYPE_FULL && isCreated && (
169169
<Link
170170
to="eapFullExport"
171171
urlParams={{ eapId: eap.id }}

0 commit comments

Comments
 (0)