Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: some copy fixes in opt in CTA #3133

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/fyle/my-profile/my-profile.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,14 +419,14 @@ export class MyProfilePage {

getOptOutMessageBody(): string {
return `<div>
<p>You can't send receipts and expense details via text message if you opt out</p>
<p>Are you sure you want to continue?<p>
<p>Once you opt out, you can't send receipts and expense details via text message. Your mobile number will be deleted</p>
<p>Would you like to continue?<p>
</div>`;
}

getDeleteMobileMessageBody(): string {
return `<div>
<p>Your mobile number will be deleted once you delete mobile number.</p>
<p>Your mobile number will be deleted.</p>
<p>Would you like to continue?<p>
</div>`;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<div (click)="clickedOnOptIn()">
<div class="profile-opt-in-card__status__label">
<span>Status</span>
<span class="profile-opt-in-card__opt-in-btn"> Opt in </span>
<span *ngIf="!isInvalidUSNumber" class="profile-opt-in-card__opt-in-btn"> Opt in </span>
</div>
<div class="profile-opt-in-card__status__icon-container">
<div class="profile-opt-in-card__status__icon--inactive"></div>
Expand Down
Loading