Claimed amount {{etxn.tx.user_amount | currency: etxn.tx.currency: '' }} was capped to
{{etxn.tx.amount | currency: etxn.tx.currency: '' }} due to policy
diff --git a/src/app/fyle/dashboard/dashboard.page.ts b/src/app/fyle/dashboard/dashboard.page.ts
index fdf526b023..6968287936 100644
--- a/src/app/fyle/dashboard/dashboard.page.ts
+++ b/src/app/fyle/dashboard/dashboard.page.ts
@@ -250,12 +250,12 @@ export class DashboardPage {
{
text: 'Capture Receipt',
icon: 'assets/svg/camera.svg',
- cssClass: 'camera',
+ cssClass: 'capture-receipt',
handler: this.actionSheetButtonsHandler('Capture Receipt', 'camera_overlay'),
},
{
text: 'Add Manually',
- icon: 'assets/svg/fy-expense.svg',
+ icon: 'assets/svg/expense.svg',
cssClass: 'capture-receipt',
handler: this.actionSheetButtonsHandler('Add Manually', 'add_edit_expense'),
},
@@ -265,7 +265,7 @@ export class DashboardPage {
that.actionSheetButtons.push({
text: 'Add Mileage',
icon: 'assets/svg/mileage.svg',
- cssClass: 'mileage',
+ cssClass: 'capture-receipt',
handler: this.actionSheetButtonsHandler('Add Mileage', 'add_edit_mileage'),
});
}
@@ -273,7 +273,7 @@ export class DashboardPage {
if (isPerDiemEnabled) {
that.actionSheetButtons.push({
text: 'Add Per Diem',
- icon: 'assets/svg/fy-calendar.svg',
+ icon: 'assets/svg/calendar.svg',
cssClass: 'capture-receipt',
handler: this.actionSheetButtonsHandler('Add Per Diem', 'add_edit_per_diem'),
});
diff --git a/src/app/fyle/dashboard/tasks/tasks-card/tasks-card.component.html b/src/app/fyle/dashboard/tasks/tasks-card/tasks-card.component.html
index d2da703b49..87b028b914 100644
--- a/src/app/fyle/dashboard/tasks/tasks-card/tasks-card.component.html
+++ b/src/app/fyle/dashboard/tasks/tasks-card/tasks-card.component.html
@@ -9,7 +9,7 @@
class="task--icon"
[ngClass]="{
'task--icon__warning': task.icon === 'warning-outline',
- 'task--icon__expense': task.icon === 'fy-expense',
+ 'task--icon__expense': task.icon === 'expense',
'task--icon__advance': task.icon === 'wallet',
'task--icon__mobile': task.icon === 'phone'
}"
diff --git a/src/app/fyle/dashboard/tasks/tasks-card/tasks-card.component.scss b/src/app/fyle/dashboard/tasks/tasks-card/tasks-card.component.scss
index a09d41c428..0c969a8233 100644
--- a/src/app/fyle/dashboard/tasks/tasks-card/tasks-card.component.scss
+++ b/src/app/fyle/dashboard/tasks/tasks-card/tasks-card.component.scss
@@ -13,7 +13,7 @@
}
&__expense {
- stroke: $grey-light;
+ color: $grey-light;
font-size: 32px;
position: relative;
top: -6px;
diff --git a/src/app/fyle/manage-corporate-cards/add-corporate-card/add-corporate-card.component.html b/src/app/fyle/manage-corporate-cards/add-corporate-card/add-corporate-card.component.html
index 9ebb5bed61..6316484254 100644
--- a/src/app/fyle/manage-corporate-cards/add-corporate-card/add-corporate-card.component.html
+++ b/src/app/fyle/manage-corporate-cards/add-corporate-card/add-corporate-card.component.html
@@ -3,7 +3,7 @@
Add Corporate Card
-
+
diff --git a/src/app/fyle/manage-corporate-cards/card-added/card-added.component.html b/src/app/fyle/manage-corporate-cards/card-added/card-added.component.html
index d2d98ba21d..041b098b27 100644
--- a/src/app/fyle/manage-corporate-cards/card-added/card-added.component.html
+++ b/src/app/fyle/manage-corporate-cards/card-added/card-added.component.html
@@ -1,6 +1,6 @@
diff --git a/src/app/fyle/manage-corporate-cards/manage-corporate-cards.page.spec.ts b/src/app/fyle/manage-corporate-cards/manage-corporate-cards.page.spec.ts
index f2fc0f88f6..466b3649b7 100644
--- a/src/app/fyle/manage-corporate-cards/manage-corporate-cards.page.spec.ts
+++ b/src/app/fyle/manage-corporate-cards/manage-corporate-cards.page.spec.ts
@@ -399,7 +399,7 @@ describe('ManageCorporateCardsPage', () => {
buttons: [
{
text: 'Disconnect',
- icon: 'assets/svg/fy-delete.svg',
+ icon: 'assets/svg/bin.svg',
cssClass: 'danger',
handler: jasmine.any(Function),
},
diff --git a/src/app/fyle/manage-corporate-cards/manage-corporate-cards.page.ts b/src/app/fyle/manage-corporate-cards/manage-corporate-cards.page.ts
index 70c665f2d5..b3cf693eb9 100644
--- a/src/app/fyle/manage-corporate-cards/manage-corporate-cards.page.ts
+++ b/src/app/fyle/manage-corporate-cards/manage-corporate-cards.page.ts
@@ -40,7 +40,7 @@ export class ManageCorporateCardsPage {
private orgSettingsService: OrgSettingsService,
private orgUserSettingsService: OrgUserSettingsService,
private realTimeFeedService: RealTimeFeedService,
- private trackingService: TrackingService,
+ private trackingService: TrackingService
) {}
refresh(event: RefresherCustomEvent): void {
@@ -56,23 +56,21 @@ export class ManageCorporateCardsPage {
ionViewWillEnter(): void {
this.corporateCards$ = this.loadCorporateCards$.pipe(
- switchMap(() => this.corporateCreditCardExpenseService.getCorporateCards()),
+ switchMap(() => this.corporateCreditCardExpenseService.getCorporateCards())
);
const orgSettings$ = this.orgSettingsService.get();
const orgUserSettings$ = this.orgUserSettingsService.get();
this.isVisaRTFEnabled$ = orgSettings$.pipe(
- map(
- (orgSettings) => orgSettings.visa_enrollment_settings.allowed && orgSettings.visa_enrollment_settings.enabled,
- ),
+ map((orgSettings) => orgSettings.visa_enrollment_settings.allowed && orgSettings.visa_enrollment_settings.enabled)
);
this.isMastercardRTFEnabled$ = orgSettings$.pipe(
map(
(orgSettings) =>
- orgSettings.mastercard_enrollment_settings.allowed && orgSettings.mastercard_enrollment_settings.enabled,
- ),
+ orgSettings.mastercard_enrollment_settings.allowed && orgSettings.mastercard_enrollment_settings.enabled
+ )
);
this.isYodleeEnabled$ = forkJoin([orgSettings$, orgUserSettings$]).pipe(
@@ -80,8 +78,8 @@ export class ManageCorporateCardsPage {
([orgSettings, orgUserSettings]) =>
orgSettings.bank_data_aggregation_settings.allowed &&
orgSettings.bank_data_aggregation_settings.enabled &&
- orgUserSettings.bank_data_aggregation_settings.enabled,
- ),
+ orgUserSettings.bank_data_aggregation_settings.enabled
+ )
);
}
@@ -93,7 +91,7 @@ export class ManageCorporateCardsPage {
if (card.is_visa_enrolled || card.is_mastercard_enrolled) {
actionSheetButtons.push({
text: 'Disconnect',
- icon: 'assets/svg/fy-delete.svg',
+ icon: 'assets/svg/bin.svg',
cssClass: 'danger',
handler: () => {
this.unenrollCard(card);
@@ -120,7 +118,7 @@ export class ManageCorporateCardsPage {
}
return actionSheetButtons;
- }),
+ })
);
}
@@ -157,7 +155,7 @@ export class ManageCorporateCardsPage {
if (popoverResponse.data?.success) {
this.handleEnrollmentSuccess();
}
- },
+ }
);
}
diff --git a/src/app/fyle/my-create-report/my-create-report.page.html b/src/app/fyle/my-create-report/my-create-report.page.html
index 6fb9916432..20d0df9dd6 100644
--- a/src/app/fyle/my-create-report/my-create-report.page.html
+++ b/src/app/fyle/my-create-report/my-create-report.page.html
@@ -3,7 +3,7 @@
diff --git a/src/app/shared/components/expenses-card/expenses-card.component.scss b/src/app/shared/components/expenses-card/expenses-card.component.scss
index 6185cda5d0..7dcac9aed0 100644
--- a/src/app/shared/components/expenses-card/expenses-card.component.scss
+++ b/src/app/shared/components/expenses-card/expenses-card.component.scss
@@ -133,7 +133,7 @@
&--receipt-icon {
height: 35px;
width: 35px;
- stroke: $black-light;
+ color: $black-light;
&__pdf {
stroke: none;
diff --git a/src/app/shared/components/expenses-card/expenses-card.component.spec.ts b/src/app/shared/components/expenses-card/expenses-card.component.spec.ts
index f182785fbb..48e66e2c0c 100644
--- a/src/app/shared/components/expenses-card/expenses-card.component.spec.ts
+++ b/src/app/shared/components/expenses-card/expenses-card.component.spec.ts
@@ -215,14 +215,14 @@ describe('ExpensesCardComponent', () => {
expect(component.receiptIcon).toEqual('assets/svg/mileage.svg');
});
- it('should set the receipt icon to fy-calendar when the fyle catergory is per diem', () => {
+ it('should set the receipt icon to calendar when the fyle catergory is per diem', () => {
component.expense = {
...expenseData1,
tx_org_category: 'per diem',
};
component.getReceipt();
fixture.detectChanges();
- expect(component.receiptIcon).toEqual('assets/svg/fy-calendar.svg');
+ expect(component.receiptIcon).toEqual('assets/svg/calendar.svg');
});
it('should set the receipt icon to add-receipt when there are no file ids', () => {
@@ -244,7 +244,7 @@ describe('ExpensesCardComponent', () => {
};
component.getReceipt();
fixture.detectChanges();
- expect(component.receiptIcon).toEqual('assets/svg/fy-expense.svg');
+ expect(component.receiptIcon).toEqual('assets/svg/expense.svg');
});
});
@@ -551,7 +551,7 @@ describe('ExpensesCardComponent', () => {
});
describe('setOtherData():', () => {
- it('should set icon to fy-matched if the source account type is corporate credit card', () => {
+ it('should set icon to card if the source account type is corporate credit card', () => {
component.expense = {
...expenseData1,
source_account_type: 'PERSONAL_CORPORATE_CREDIT_CARD_ACCOUNT',
@@ -560,10 +560,10 @@ describe('ExpensesCardComponent', () => {
component.setOtherData();
fixture.detectChanges();
- expect(component.paymentModeIcon).toEqual('fy-matched');
+ expect(component.paymentModeIcon).toEqual('card');
});
- it('should set icon to fy-unmatched if the source account type is corporate credit card but expense group id is not present', () => {
+ it('should set icon to card if the source account type is corporate credit card but expense group id is not present', () => {
component.expense = {
...expenseData1,
source_account_type: 'PERSONAL_CORPORATE_CREDIT_CARD_ACCOUNT',
@@ -571,7 +571,7 @@ describe('ExpensesCardComponent', () => {
component.setOtherData();
fixture.detectChanges();
- expect(component.paymentModeIcon).toEqual('fy-unmatched');
+ expect(component.paymentModeIcon).toEqual('card');
});
it('should set icon to fy-reimbersable if the source account type is not a corporate credit card and if the reimbersement is not skipped', () => {
diff --git a/src/app/shared/components/expenses-card/expenses-card.component.ts b/src/app/shared/components/expenses-card/expenses-card.component.ts
index 1fafb2827e..6c4ca28ea4 100644
--- a/src/app/shared/components/expenses-card/expenses-card.component.ts
+++ b/src/app/shared/components/expenses-card/expenses-card.component.ts
@@ -159,12 +159,12 @@ export class ExpensesCardComponent implements OnInit {
if (this.expense.tx_org_category && this.expense.tx_org_category?.toLowerCase() === 'mileage') {
this.receiptIcon = 'assets/svg/mileage.svg';
} else if (this.expense.tx_org_category && this.expense.tx_org_category?.toLowerCase() === 'per diem') {
- this.receiptIcon = 'assets/svg/fy-calendar.svg';
+ this.receiptIcon = 'assets/svg/calendar.svg';
} else {
if (!this.expense.tx_file_ids) {
this.receiptIcon = 'assets/svg/list-plus.svg';
if (this.isFromPotentialDuplicates || this.isFromViewReports) {
- this.receiptIcon = 'assets/svg/fy-expense.svg';
+ this.receiptIcon = 'assets/svg/expense.svg';
}
} else {
this.isReceiptPresent = true;
@@ -314,9 +314,9 @@ export class ExpensesCardComponent implements OnInit {
setOtherData(): void {
if (this.expense.source_account_type === AccountType.CCC) {
if (this.expense.tx_corporate_credit_card_expense_group_id) {
- this.paymentModeIcon = 'fy-matched';
+ this.paymentModeIcon = 'card';
} else {
- this.paymentModeIcon = 'fy-unmatched';
+ this.paymentModeIcon = 'card';
}
} else {
if (!this.expense.tx_skip_reimbursement) {
diff --git a/src/app/shared/components/footer/footer.component.scss b/src/app/shared/components/footer/footer.component.scss
index 90f02cfa5a..bb1849cc5e 100644
--- a/src/app/shared/components/footer/footer.component.scss
+++ b/src/app/shared/components/footer/footer.component.scss
@@ -46,7 +46,6 @@
fill: $black-2;
&__primary {
fill: $pure-white;
- stroke: $pure-white;
height: 36px;
width: 36px;
position: relative;
diff --git a/src/app/shared/components/fy-add-to-report/fy-add-to-report-modal/fy-add-to-report-modal.component.html b/src/app/shared/components/fy-add-to-report/fy-add-to-report-modal/fy-add-to-report-modal.component.html
index 2b2a3abcfb..afd69fbd4d 100644
--- a/src/app/shared/components/fy-add-to-report/fy-add-to-report-modal/fy-add-to-report-modal.component.html
+++ b/src/app/shared/components/fy-add-to-report/fy-add-to-report-modal/fy-add-to-report-modal.component.html
@@ -1,12 +1,12 @@
-
+
Add To Report
-
+
@@ -34,7 +34,7 @@
@@ -74,7 +74,7 @@
diff --git a/src/app/shared/components/fy-alert-info/fy-alert-info.component.html b/src/app/shared/components/fy-alert-info/fy-alert-info.component.html
index 5b6af84ef0..002306a75e 100644
--- a/src/app/shared/components/fy-alert-info/fy-alert-info.component.html
+++ b/src/app/shared/components/fy-alert-info/fy-alert-info.component.html
@@ -1,5 +1,5 @@
-
+
-
+
Add Approvers
diff --git a/src/app/shared/components/fy-approver/add-approvers-popover/approver-dialog/approver-dialog.component.html b/src/app/shared/components/fy-approver/add-approvers-popover/approver-dialog/approver-dialog.component.html
index 7dbf1fca73..f45f80746b 100644
--- a/src/app/shared/components/fy-approver/add-approvers-popover/approver-dialog/approver-dialog.component.html
+++ b/src/app/shared/components/fy-approver/add-approvers-popover/approver-dialog/approver-dialog.component.html
@@ -1,12 +1,12 @@
-
+
Select Approvers
-
+
@@ -34,7 +34,7 @@
*ngIf="!(selectedApproversList?.length > 0)"
class="selection-modal--search-icon"
matPrefix
- svgIcon="fy-search"
+ svgIcon="search"
>
-
+
-
+
Expense Blocked
diff --git a/src/app/shared/components/fy-currency/fy-currency-choose-currency/fy-currency-choose-currency.component.html b/src/app/shared/components/fy-currency/fy-currency-choose-currency/fy-currency-choose-currency.component.html
index e51b235691..bbfe07fd56 100644
--- a/src/app/shared/components/fy-currency/fy-currency-choose-currency/fy-currency-choose-currency.component.html
+++ b/src/app/shared/components/fy-currency/fy-currency-choose-currency/fy-currency-choose-currency.component.html
@@ -1,12 +1,12 @@
-
+
Select Currency
-
+
diff --git a/src/app/shared/components/fy-currency/fy-currency-exchange-rate/fy-currency-exchange-rate.component.html b/src/app/shared/components/fy-currency/fy-currency-exchange-rate/fy-currency-exchange-rate.component.html
index c50a901e41..3f2b79968b 100644
--- a/src/app/shared/components/fy-currency/fy-currency-exchange-rate/fy-currency-exchange-rate.component.html
+++ b/src/app/shared/components/fy-currency/fy-currency-exchange-rate/fy-currency-exchange-rate.component.html
@@ -1,5 +1,5 @@
-
+
diff --git a/src/app/shared/components/fy-currency/fy-currency.component.html b/src/app/shared/components/fy-currency/fy-currency.component.html
index ffe318af07..dda4cf2f4d 100644
--- a/src/app/shared/components/fy-currency/fy-currency.component.html
+++ b/src/app/shared/components/fy-currency/fy-currency.component.html
@@ -23,7 +23,7 @@
-
+
{{ value.amount | currency : value.currency : 'code' }}
at {{ exchangeRate | number : '1.0-6' }} {{ value.currency }} / {{ value.orig_currency }}
diff --git a/src/app/shared/components/fy-delete-dialog/fy-delete-dialog.component.html b/src/app/shared/components/fy-delete-dialog/fy-delete-dialog.component.html
index 0e8bdc06e3..7442ca00d4 100644
--- a/src/app/shared/components/fy-delete-dialog/fy-delete-dialog.component.html
+++ b/src/app/shared/components/fy-delete-dialog/fy-delete-dialog.component.html
@@ -14,7 +14,7 @@
-
+
diff --git a/src/app/shared/components/fy-filter-pills/fy-filter-pills.component.html b/src/app/shared/components/fy-filter-pills/fy-filter-pills.component.html
index 0881493347..5890eaac89 100644
--- a/src/app/shared/components/fy-filter-pills/fy-filter-pills.component.html
+++ b/src/app/shared/components/fy-filter-pills/fy-filter-pills.component.html
@@ -11,7 +11,7 @@
diff --git a/src/app/shared/components/fy-input-popover/fy-input-popover.component.html b/src/app/shared/components/fy-input-popover/fy-input-popover.component.html
index 362d361b0b..7512e3596a 100644
--- a/src/app/shared/components/fy-input-popover/fy-input-popover.component.html
+++ b/src/app/shared/components/fy-input-popover/fy-input-popover.component.html
@@ -5,7 +5,7 @@
-
+
diff --git a/src/app/shared/components/fy-location/fy-location-modal/fy-location-modal.component.html b/src/app/shared/components/fy-location/fy-location-modal/fy-location-modal.component.html
index a760db2c77..5de31bea10 100644
--- a/src/app/shared/components/fy-location/fy-location-modal/fy-location-modal.component.html
+++ b/src/app/shared/components/fy-location/fy-location-modal/fy-location-modal.component.html
@@ -27,7 +27,7 @@
mat-icon-button
matSuffix
>
-
+
diff --git a/src/app/shared/components/fy-multiselect/fy-multiselect-modal/fy-multiselect-modal.component.html b/src/app/shared/components/fy-multiselect/fy-multiselect-modal/fy-multiselect-modal.component.html
index 2f1c79a52e..a2f2439dad 100644
--- a/src/app/shared/components/fy-multiselect/fy-multiselect-modal/fy-multiselect-modal.component.html
+++ b/src/app/shared/components/fy-multiselect/fy-multiselect-modal/fy-multiselect-modal.component.html
@@ -1,5 +1,5 @@
-
+
@@ -8,7 +8,7 @@
-
+
@@ -36,7 +36,7 @@
*ngIf="!(currentSelections?.length > 0)"
class="selection-modal--search-icon"
matPrefix
- svgIcon="fy-search"
+ svgIcon="search"
>
-
+
-
+
Policy Violation 1">s Found
diff --git a/src/app/shared/components/fy-popover/fy-popover.component.html b/src/app/shared/components/fy-popover/fy-popover.component.html
index 026b3a0a84..460c013be5 100644
--- a/src/app/shared/components/fy-popover/fy-popover.component.html
+++ b/src/app/shared/components/fy-popover/fy-popover.component.html
@@ -2,7 +2,7 @@
-
+
diff --git a/src/app/shared/components/fy-select-project/fy-select-modal/fy-select-project-modal.component.html b/src/app/shared/components/fy-select-project/fy-select-modal/fy-select-project-modal.component.html
index 251456723e..af8457a9e8 100644
--- a/src/app/shared/components/fy-select-project/fy-select-modal/fy-select-project-modal.component.html
+++ b/src/app/shared/components/fy-select-project/fy-select-modal/fy-select-project-modal.component.html
@@ -1,18 +1,18 @@
-
+
Select {{ label }}
-
+
-
+
-
+
Select Merchant
-
+
-
+
-
+
@@ -8,13 +8,13 @@
-
+
-
+
-
+
Select Items
-
+
@@ -33,7 +33,7 @@
*ngIf="!(currentSelections?.length > 0)"
class="selection-modal--search-icon"
matPrefix
- svgIcon="fy-search"
+ svgIcon="search"
>
-
+
-
+
diff --git a/src/app/shared/components/fy-view-report-info/fy-view-report-info.component.html b/src/app/shared/components/fy-view-report-info/fy-view-report-info.component.html
index 03ea313207..1a3f3b4467 100644
--- a/src/app/shared/components/fy-view-report-info/fy-view-report-info.component.html
+++ b/src/app/shared/components/fy-view-report-info/fy-view-report-info.component.html
@@ -1,9 +1,9 @@
-
+
-
+
diff --git a/src/app/shared/components/popup-with-bullets/popup-with-bullets.component.spec.ts b/src/app/shared/components/popup-with-bullets/popup-with-bullets.component.spec.ts
index 2eab230352..0d60c61374 100644
--- a/src/app/shared/components/popup-with-bullets/popup-with-bullets.component.spec.ts
+++ b/src/app/shared/components/popup-with-bullets/popup-with-bullets.component.spec.ts
@@ -97,7 +97,7 @@ describe('PopupWithBulletsComponent', () => {
const message = 'Phone Number Copied Successfully';
const successToastProperties = {
data: {
- icon: 'tick-circle-outline-white',
+ icon: 'check-circle-outline',
showCloseButton: true,
message,
},
@@ -115,7 +115,7 @@ describe('PopupWithBulletsComponent', () => {
expect(snackbarProperties.setSnackbarProperties).toHaveBeenCalledOnceWith(
'success',
{ message },
- 'tick-circle-outline-white'
+ 'check-circle-outline'
);
});
});
diff --git a/src/app/shared/components/popup-with-bullets/popup-with-bullets.component.ts b/src/app/shared/components/popup-with-bullets/popup-with-bullets.component.ts
index 0093bdbb52..8dcb9498db 100644
--- a/src/app/shared/components/popup-with-bullets/popup-with-bullets.component.ts
+++ b/src/app/shared/components/popup-with-bullets/popup-with-bullets.component.ts
@@ -43,7 +43,7 @@ export class PopupWithBulletsComponent {
showToastMessage(message: string): void {
this.matSnackBar.openFromComponent(ToastMessageComponent, {
- ...this.snackbarProperties.setSnackbarProperties('success', { message }, 'tick-circle-outline-white'),
+ ...this.snackbarProperties.setSnackbarProperties('success', { message }, 'check-circle-outline'),
panelClass: 'msb-success',
});
}
diff --git a/src/app/shared/components/route-selector/route-selector-modal/route-selector-modal.component.html b/src/app/shared/components/route-selector/route-selector-modal/route-selector-modal.component.html
index e86d3d85e9..a1a89db62a 100644
--- a/src/app/shared/components/route-selector/route-selector-modal/route-selector-modal.component.html
+++ b/src/app/shared/components/route-selector/route-selector-modal/route-selector-modal.component.html
@@ -62,11 +62,7 @@
i >= 1 && (i !== mileageLocations.controls.length - 1 || mileageLocations.controls.length === 10)
"
>
-
+
diff --git a/src/app/shared/components/split-expense-policy-violation/split-expense-policy-violation.component.html b/src/app/shared/components/split-expense-policy-violation/split-expense-policy-violation.component.html
index 5655d0ff37..7ab280e3d3 100644
--- a/src/app/shared/components/split-expense-policy-violation/split-expense-policy-violation.component.html
+++ b/src/app/shared/components/split-expense-policy-violation/split-expense-policy-violation.component.html
@@ -1,5 +1,5 @@
-
+
Policy Violation Found
diff --git a/src/app/shared/components/toast-message/toast-message.component.spec.ts b/src/app/shared/components/toast-message/toast-message.component.spec.ts
index 4723cf5bfe..6d50b8e11f 100644
--- a/src/app/shared/components/toast-message/toast-message.component.spec.ts
+++ b/src/app/shared/components/toast-message/toast-message.component.spec.ts
@@ -35,7 +35,7 @@ describe('ToastMessageComponent', () => {
it('should display message', () => {
const message = 'Test message';
toastMessageComponent.data = {
- icon: 'warning',
+ icon: 'danger-fill',
message: 'Test message',
redirectionText: null,
showCloseButton: false,
diff --git a/src/app/shared/components/transaction-status-info-popover/transaction-status-info-popover.component.html b/src/app/shared/components/transaction-status-info-popover/transaction-status-info-popover.component.html
index b092fcf1d7..2f89148a50 100644
--- a/src/app/shared/components/transaction-status-info-popover/transaction-status-info-popover.component.html
+++ b/src/app/shared/components/transaction-status-info-popover/transaction-status-info-popover.component.html
@@ -1,5 +1,5 @@
-
+
-
+
-
+
@@ -8,13 +8,13 @@
-
+
-
+
+
+
diff --git a/src/assets/svg/calendar.svg b/src/assets/svg/calendar.svg
index 436a11211e..42a511b222 100644
--- a/src/assets/svg/calendar.svg
+++ b/src/assets/svg/calendar.svg
@@ -1,12 +1,12 @@
-