diff --git a/.github/workflows/appflow-release-branch.yml b/.github/workflows/appflow-release-branch.yml
new file mode 100644
index 0000000000..e35e4a3e3d
--- /dev/null
+++ b/.github/workflows/appflow-release-branch.yml
@@ -0,0 +1,81 @@
+name: Appflow Release Branch
+
+on:
+ push:
+ branches:
+ - mobile_release_*
+
+jobs:
+ build-app:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Build Android with Appflow
+ uses: ionic-team/appflow-build@v1
+ with:
+ token: ${{ secrets.APPFLOW_TOKEN }}
+ app-id: 32316914
+ platform: Android
+ build-type: debug
+ environment: staging
+ native-config: staging
+ upload-artifact: Android
+
+ - uses: actions/download-artifact@v2
+ id: download
+ with:
+ name: 'Android'
+ path: ./
+
+ - name: Rename file
+ run: mv *.apk android.apk
+
+ - name: Upload apk to Diawi
+ uses: rnkdsh/action-upload-diawi@v1.2.0
+ id: diwaiAndroid
+ with:
+ token: ${{ secrets.DIAWI_TOKEN }}
+ file: android.apk
+
+ - name: Build iOS on Appflow
+ uses: ionic-team/appflow-build@v1
+ with:
+ token: ${{ secrets.APPFLOW_TOKEN }}
+ app-id: 32316914
+ platform: iOS
+ build-type: development
+ certificate: Fyle signing
+ environment: staging
+ native-config: prod
+ upload-artifact: ios
+
+ - uses: actions/download-artifact@v2
+ id: ios
+ with:
+ name: 'ios'
+ path: ./
+
+ - name: Rename file
+ run: mv *.ipa ios.ipa
+
+ - name: Upload ipa to diawi
+ uses: rnkdsh/action-upload-diawi@v1.2.0
+ id: diwaiIos
+ with:
+ token: ${{ secrets.DIAWI_TOKEN }}
+ file: ios.ipa
+
+ - name: Get branch name
+ id: get-branch
+ uses: xom9ikk/split@v1
+ with:
+ string: ${{ github.ref }}
+ separator: refs/heads/
+
+ - name: Send Message to Slack
+ uses: archive/github-actions-slack@v2.0.1
+ id: notify
+ with:
+ slack-bot-user-oauth-access-token: ${{ secrets.SLACK_BOT_USER_OAUTH_ACCESS_TOKEN }}
+ slack-channel: C029QPGHSQL
+ slack-text: ${{github.event.sender.login}} pushed to ${{github.ref_name}}. \r\n \r\n APK Link ${{steps.diwaiAndroid.outputs.url}} \r\n IPA link ${{steps.diwaiIos.outputs.url}}
+
diff --git a/src/app/auth/sign-in/sign-in.page.html b/src/app/auth/sign-in/sign-in.page.html
index 2ae122fd21..8f6d77ddf3 100644
--- a/src/app/auth/sign-in/sign-in.page.html
+++ b/src/app/auth/sign-in/sign-in.page.html
@@ -116,7 +116,7 @@
[loading]="googleSignInLoading"
>
-
+
Sign in with Google
diff --git a/src/app/core/mock-data/sidemenu-item.data.ts b/src/app/core/mock-data/sidemenu-item.data.ts
index c273e74158..1b2e0383f2 100644
--- a/src/app/core/mock-data/sidemenu-item.data.ts
+++ b/src/app/core/mock-data/sidemenu-item.data.ts
@@ -14,7 +14,7 @@ export const sidemenuItemData1: SidemenuItem = {
export const sidemenuItemData2: SidemenuItem = {
title: 'Team',
isVisible: true,
- icon: 'teams',
+ icon: 'user-three',
isDropdownOpen: false,
disabled: false,
dropdownOptions: [
diff --git a/src/app/core/mock-data/sidemenu.data.ts b/src/app/core/mock-data/sidemenu.data.ts
index b3aa9f3bf0..3b958306b6 100644
--- a/src/app/core/mock-data/sidemenu.data.ts
+++ b/src/app/core/mock-data/sidemenu.data.ts
@@ -16,7 +16,7 @@ export const sidemenuData1 = [
{
title: 'Settings',
isVisible: true,
- icon: 'fy-settings',
+ icon: 'gear',
route: ['/', 'enterprise', 'my_profile'],
},
];
@@ -69,7 +69,7 @@ export const PrimaryOptionsRes2: Partial[] = [
{
title: 'Team',
isVisible: true,
- icon: 'teams',
+ icon: 'user-three',
isDropdownOpen: false,
disabled: false,
dropdownOptions: [
@@ -119,7 +119,7 @@ export const getPrimarySidemenuOptionsRes1 = [
title: 'Team Reports',
isVisible: true,
route: ['/', 'enterprise', 'team_reports'],
- icon: 'teams',
+ icon: 'user-three',
disabled: false,
},
];
@@ -135,7 +135,7 @@ export const getSecondarySidemenuOptionsRes1 = [
{
title: 'Settings',
isVisible: true,
- icon: 'fy-settings',
+ icon: 'gear',
route: ['/', 'enterprise', 'my_profile'],
},
{
@@ -148,7 +148,7 @@ export const getSecondarySidemenuOptionsRes1 = [
{
title: 'Help',
isVisible: true,
- icon: 'help',
+ icon: 'question-square-outline',
route: ['/', 'enterprise', 'help'],
disabled: false,
},
@@ -185,7 +185,7 @@ export const setSideMenuRes: Partial[] = [
title: 'Team Reports',
isVisible: true,
route: ['/', 'enterprise', 'team_reports'],
- icon: 'teams',
+ icon: 'user-three',
disabled: false,
},
{
@@ -198,7 +198,7 @@ export const setSideMenuRes: Partial[] = [
{
title: 'Settings',
isVisible: true,
- icon: 'fy-settings',
+ icon: 'gear',
route: ['/', 'enterprise', 'my_profile'],
},
{
@@ -211,7 +211,7 @@ export const setSideMenuRes: Partial[] = [
{
title: 'Help',
isVisible: true,
- icon: 'help',
+ icon: 'question-square-outline',
route: ['/', 'enterprise', 'help'],
disabled: false,
},
diff --git a/src/app/fyle/add-edit-advance-request/camera-options-popup/camera-options-popup.component.html b/src/app/fyle/add-edit-advance-request/camera-options-popup/camera-options-popup.component.html
index 32e5a25bba..b18a16f43e 100644
--- a/src/app/fyle/add-edit-advance-request/camera-options-popup/camera-options-popup.component.html
+++ b/src/app/fyle/add-edit-advance-request/camera-options-popup/camera-options-popup.component.html
@@ -13,7 +13,7 @@
Upload from Gallery
diff --git a/src/app/fyle/add-edit-expense/camera-options-popup/camera-options-popup.component.html b/src/app/fyle/add-edit-expense/camera-options-popup/camera-options-popup.component.html
index 7776ac86e7..6de71fd93f 100644
--- a/src/app/fyle/add-edit-expense/camera-options-popup/camera-options-popup.component.html
+++ b/src/app/fyle/add-edit-expense/camera-options-popup/camera-options-popup.component.html
@@ -15,7 +15,7 @@
Upload from Gallery
diff --git a/src/app/fyle/my-expenses-v2/my-expenses-v2.page.html b/src/app/fyle/my-expenses-v2/my-expenses-v2.page.html
index 2e2e0e41c1..55f1326aa5 100644
--- a/src/app/fyle/my-expenses-v2/my-expenses-v2.page.html
+++ b/src/app/fyle/my-expenses-v2/my-expenses-v2.page.html
@@ -13,10 +13,10 @@
diff --git a/src/app/fyle/my-view-advance/my-view-advance.page.html b/src/app/fyle/my-view-advance/my-view-advance.page.html
index f28d0f29ab..6081fa6f60 100644
--- a/src/app/fyle/my-view-advance/my-view-advance.page.html
+++ b/src/app/fyle/my-view-advance/my-view-advance.page.html
@@ -31,7 +31,7 @@
-
+
diff --git a/src/app/fyle/view-mileage/view-mileage.page.html b/src/app/fyle/view-mileage/view-mileage.page.html
index 6a6d124af3..5f67646fa5 100644
--- a/src/app/fyle/view-mileage/view-mileage.page.html
+++ b/src/app/fyle/view-mileage/view-mileage.page.html
@@ -125,7 +125,10 @@
-
+
@@ -156,7 +159,7 @@
-
+
diff --git a/src/app/fyle/view-per-diem/view-per-diem.page.html b/src/app/fyle/view-per-diem/view-per-diem.page.html
index 82f88c2b95..994865531a 100644
--- a/src/app/fyle/view-per-diem/view-per-diem.page.html
+++ b/src/app/fyle/view-per-diem/view-per-diem.page.html
@@ -108,7 +108,7 @@
-
+
diff --git a/src/app/fyle/view-team-advance-request/view-team-advance-request.page.html b/src/app/fyle/view-team-advance-request/view-team-advance-request.page.html
index cc9a3c2e02..08a145a9de 100644
--- a/src/app/fyle/view-team-advance-request/view-team-advance-request.page.html
+++ b/src/app/fyle/view-team-advance-request/view-team-advance-request.page.html
@@ -95,7 +95,7 @@
{
const editReportButton = getElementBySelector(fixture, '.view-reports--card ion-icon') as HTMLElement;
click(editReportButton);
+ flushMicrotasks();
tick(2000);
expect(popoverController.create).toHaveBeenCalledOnceWith({
@@ -1032,6 +1033,7 @@ describe('ViewTeamReportPageV2', () => {
const editReportButton = getElementBySelector(fixture, '.view-reports--card ion-icon') as HTMLElement;
click(editReportButton);
+ flushMicrotasks();
tick(2000);
expect(popoverController.create).toHaveBeenCalledOnceWith({
diff --git a/src/app/shared/components/capture-receipt/add-more-popup/add-more-popup.component.spec.ts b/src/app/shared/components/capture-receipt/add-more-popup/add-more-popup.component.spec.ts
index c787ff2d46..25e059bfcd 100644
--- a/src/app/shared/components/capture-receipt/add-more-popup/add-more-popup.component.spec.ts
+++ b/src/app/shared/components/capture-receipt/add-more-popup/add-more-popup.component.spec.ts
@@ -35,7 +35,7 @@ describe('AddMorePopupComponent', () => {
expect(containerElements.length).toBe(2); // Check that there are 2 action buttons
expect(addMorePopupComponent.actionButtons).toEqual([
{ icon: 'fy-camera', title: 'Capture Receipts', mode: 'camera' },
- { icon: 'fy-gallery', title: 'Upload from Gallery', mode: 'gallery' },
+ { icon: 'image', title: 'Upload from Gallery', mode: 'gallery' },
]);
});
diff --git a/src/app/shared/components/capture-receipt/add-more-popup/add-more-popup.component.ts b/src/app/shared/components/capture-receipt/add-more-popup/add-more-popup.component.ts
index 9a6396f5f8..cf0658c243 100644
--- a/src/app/shared/components/capture-receipt/add-more-popup/add-more-popup.component.ts
+++ b/src/app/shared/components/capture-receipt/add-more-popup/add-more-popup.component.ts
@@ -19,7 +19,7 @@ export class AddMorePopupComponent implements OnInit {
mode: 'camera',
},
{
- icon: 'fy-gallery',
+ icon: 'image',
title: 'Upload from Gallery',
mode: 'gallery',
},
diff --git a/src/app/shared/components/corporate-card/corporate-card.component.html b/src/app/shared/components/corporate-card/corporate-card.component.html
index e3403c2b32..cd2b43bf6e 100644
--- a/src/app/shared/components/corporate-card/corporate-card.component.html
+++ b/src/app/shared/components/corporate-card/corporate-card.component.html
@@ -43,7 +43,10 @@
(click)="cardOptionsClick.emit(card)"
data-testid="more-options-btn"
>
-
+
diff --git a/src/app/shared/components/corporate-card/corporate-card.component.scss b/src/app/shared/components/corporate-card/corporate-card.component.scss
index abc8f2a2f4..588434e5b9 100644
--- a/src/app/shared/components/corporate-card/corporate-card.component.scss
+++ b/src/app/shared/components/corporate-card/corporate-card.component.scss
@@ -90,5 +90,6 @@
&__more-options-btn-icon {
width: 20px;
height: 20px;
+ color: $dark-grey;
}
}
diff --git a/src/app/shared/components/expenses-card-v2/expenses-card.component.html b/src/app/shared/components/expenses-card-v2/expenses-card.component.html
index df48e3895e..5552a2abe9 100644
--- a/src/app/shared/components/expenses-card-v2/expenses-card.component.html
+++ b/src/app/shared/components/expenses-card-v2/expenses-card.component.html
@@ -188,11 +188,7 @@
class="expenses-card--icons__policy-violated-icon"
>error
-
+
diff --git a/src/app/shared/components/expenses-card-v2/expenses-card.component.scss b/src/app/shared/components/expenses-card-v2/expenses-card.component.scss
index b12d9ffd5b..49185cd5c3 100644
--- a/src/app/shared/components/expenses-card-v2/expenses-card.component.scss
+++ b/src/app/shared/components/expenses-card-v2/expenses-card.component.scss
@@ -200,6 +200,7 @@
margin-left: 4px;
width: 16px;
height: 16px;
+ color: $brand-primary-light;
}
}
diff --git a/src/app/shared/components/expenses-card/expenses-card.component.html b/src/app/shared/components/expenses-card/expenses-card.component.html
index 87c67d28a9..dbc65cee09 100644
--- a/src/app/shared/components/expenses-card/expenses-card.component.html
+++ b/src/app/shared/components/expenses-card/expenses-card.component.html
@@ -191,7 +191,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 b12d9ffd5b..49185cd5c3 100644
--- a/src/app/shared/components/expenses-card/expenses-card.component.scss
+++ b/src/app/shared/components/expenses-card/expenses-card.component.scss
@@ -200,6 +200,7 @@
margin-left: 4px;
width: 16px;
height: 16px;
+ color: $brand-primary-light;
}
}
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 ce47f0fef4..55e02761c9 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
@@ -3,7 +3,7 @@
{{ message }}
diff --git a/src/app/shared/components/fy-approver/fy-approver.component.html b/src/app/shared/components/fy-approver/fy-approver.component.html
index dc9c00eb95..4191587c13 100644
--- a/src/app/shared/components/fy-approver/fy-approver.component.html
+++ b/src/app/shared/components/fy-approver/fy-approver.component.html
@@ -9,5 +9,5 @@
-
+
diff --git a/src/app/shared/components/fy-approver/fy-approver.component.scss b/src/app/shared/components/fy-approver/fy-approver.component.scss
index 267b3e062f..43995ee63e 100644
--- a/src/app/shared/components/fy-approver/fy-approver.component.scss
+++ b/src/app/shared/components/fy-approver/fy-approver.component.scss
@@ -32,5 +32,7 @@
&--icon {
margin-bottom: -2px;
color: $brand-primary-light;
+ height: 18px;
+ width: 18px;
}
}
diff --git a/src/app/shared/components/fy-policy-violation-info/fy-policy-violation-info.component.html b/src/app/shared/components/fy-policy-violation-info/fy-policy-violation-info.component.html
index 28f5e79e14..72b4172238 100644
--- a/src/app/shared/components/fy-policy-violation-info/fy-policy-violation-info.component.html
+++ b/src/app/shared/components/fy-policy-violation-info/fy-policy-violation-info.component.html
@@ -1,6 +1,6 @@
-
+
diff --git a/src/app/shared/components/sidemenu/sidemenu-content/sidemenu-content-item/sidemenu-content-item.component.html b/src/app/shared/components/sidemenu/sidemenu-content/sidemenu-content-item/sidemenu-content-item.component.html
index 1f254b3c0c..ec4f74933d 100644
--- a/src/app/shared/components/sidemenu/sidemenu-content/sidemenu-content-item/sidemenu-content-item.component.html
+++ b/src/app/shared/components/sidemenu/sidemenu-content/sidemenu-content-item/sidemenu-content-item.component.html
@@ -1,4 +1,4 @@
-
+
diff --git a/src/app/shared/components/sidemenu/sidemenu-header/sidemenu-header.component.scss b/src/app/shared/components/sidemenu/sidemenu-header/sidemenu-header.component.scss
index 93599144df..ff754fd648 100644
--- a/src/app/shared/components/sidemenu/sidemenu-header/sidemenu-header.component.scss
+++ b/src/app/shared/components/sidemenu/sidemenu-header/sidemenu-header.component.scss
@@ -45,6 +45,7 @@
&__icon {
height: 16px;
min-width: 18px;
+ color: $grey-light;
}
}
}
diff --git a/src/app/shared/components/sidemenu/sidemenu.component.spec.ts b/src/app/shared/components/sidemenu/sidemenu.component.spec.ts
index d2f6d53a98..903dfb547a 100644
--- a/src/app/shared/components/sidemenu/sidemenu.component.spec.ts
+++ b/src/app/shared/components/sidemenu/sidemenu.component.spec.ts
@@ -339,7 +339,7 @@ describe('SidemenuComponent', () => {
{
title: 'Team',
isVisible: true,
- icon: 'teams',
+ icon: 'user-three',
isDropdownOpen: false,
disabled: false,
dropdownOptions: [
@@ -417,7 +417,7 @@ describe('SidemenuComponent', () => {
{
title: 'Settings',
isVisible: true,
- icon: 'fy-settings',
+ icon: 'gear',
route: ['/', 'enterprise', 'my_profile'],
},
{
@@ -430,7 +430,7 @@ describe('SidemenuComponent', () => {
{
title: 'Help',
isVisible: true,
- icon: 'help',
+ icon: 'question-square-outline',
route: ['/', 'enterprise', 'help'],
disabled: false,
},
diff --git a/src/app/shared/components/sidemenu/sidemenu.component.ts b/src/app/shared/components/sidemenu/sidemenu.component.ts
index 068b0678ab..03e37610c9 100644
--- a/src/app/shared/components/sidemenu/sidemenu.component.ts
+++ b/src/app/shared/components/sidemenu/sidemenu.component.ts
@@ -246,7 +246,7 @@ export class SidemenuComponent implements OnInit {
{
title: 'Team',
isVisible: teamOptions.length ? true : false,
- icon: 'teams',
+ icon: 'user-three',
isDropdownOpen: false,
disabled: !isConnected,
dropdownOptions: teamOptions,
@@ -266,7 +266,7 @@ export class SidemenuComponent implements OnInit {
if (teamOptions.length === 1) {
this.updateSidemenuOption(primaryOptions, 'Team', {
...teamOptions[0],
- icon: 'teams',
+ icon: 'user-three',
disabled: !isConnected,
});
}
@@ -303,7 +303,7 @@ export class SidemenuComponent implements OnInit {
{
title: 'Settings',
isVisible: true,
- icon: 'fy-settings',
+ icon: 'gear',
route: ['/', 'enterprise', 'my_profile'],
},
];
@@ -335,7 +335,7 @@ export class SidemenuComponent implements OnInit {
{
title: 'Settings',
isVisible: true,
- icon: 'fy-settings',
+ icon: 'gear',
route: ['/', 'enterprise', 'my_profile'],
},
{
@@ -352,7 +352,7 @@ export class SidemenuComponent implements OnInit {
{
title: 'Help',
isVisible: true,
- icon: 'help',
+ icon: 'question-square-outline',
route: ['/', 'enterprise', 'help'],
disabled: !isConnected,
},
diff --git a/src/app/shared/icon/icon.module.ts b/src/app/shared/icon/icon.module.ts
index 739b5f5ca1..eff03e260f 100644
--- a/src/app/shared/icon/icon.module.ts
+++ b/src/app/shared/icon/icon.module.ts
@@ -49,11 +49,10 @@ export class IconModule {
'fy-expense.svg',
'flag-fill.svg',
'flag-outline.svg',
- 'fy-help-new.svg',
'fy-individual.svg',
'fy-info.svg',
'fy-info-gradient.svg',
- 'fy-gallery.svg',
+ 'image.svg',
'fy-matched-no.svg',
'fy-matched-yes.svg',
'fy-mileage.svg',
@@ -73,7 +72,7 @@ export class IconModule {
'fy-reports.svg',
'fy-report.svg',
'fy-reimbursable.svg',
- 'fy-settings.svg',
+ 'gear.svg',
'fy-sort-ascending.svg',
'fy-sort-descending.svg',
'fy-spinner-circle.svg',
@@ -85,29 +84,27 @@ export class IconModule {
'fy-clear.svg',
'fy-unmatched.svg',
'fy-location.svg',
- 'gallery.svg',
'house-outline.svg',
'house-fill.svg',
- 'ionic-log-out-outline.svg',
'information.svg',
+ 'image.svg',
'logo-icon-white.svg',
'logo-white.svg',
+ 'logo-google.svg',
'list.svg',
'navigate-left.svg',
'navigate-right.svg',
'no-attachment.svg',
+ 'open-in-new-tab.svg',
'phone.svg',
- 'professional-service.svg',
+ 'power.svg',
'plus.svg',
'plus-minus.svg',
- 'profile.svg',
+ 'user-one.svg',
'radio-circle-outline.svg',
'rectangle.svg',
- 'return-home.svg',
+ 'house-filled-arrow-clockwise.svg',
'search.svg',
- 'settings.svg',
- 'single.svg',
- 'split-expense.svg',
'send.svg',
'send-back.svg',
'success-tick.svg',
@@ -125,9 +122,12 @@ export class IconModule {
'warning-fill.svg',
'fy-merge.svg',
'split-evenly.svg',
- 'split-new.svg',
+ 'split.svg',
'list-plus.svg',
+ 'question-square-outline.svg',
+ 'user-one.svg',
'user-two.svg',
+ 'user-three.svg',
'vertical-dots-menu.svg',
'wallet.svg',
'scooter.svg',
diff --git a/src/assets/svg/fy-gallery.svg b/src/assets/svg/fy-gallery.svg
deleted file mode 100644
index 13b1c5d0bf..0000000000
--- a/src/assets/svg/fy-gallery.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/src/assets/svg/fy-help-new.svg b/src/assets/svg/fy-help-new.svg
deleted file mode 100644
index c0a193d2d8..0000000000
--- a/src/assets/svg/fy-help-new.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-
diff --git a/src/assets/svg/fy-settings.svg b/src/assets/svg/fy-settings.svg
deleted file mode 100755
index 8d8d01d746..0000000000
--- a/src/assets/svg/fy-settings.svg
+++ /dev/null
@@ -1,4 +0,0 @@
-
diff --git a/src/assets/svg/gallery.svg b/src/assets/svg/gallery.svg
deleted file mode 100644
index 596f35daee..0000000000
--- a/src/assets/svg/gallery.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
diff --git a/src/assets/svg/gear.svg b/src/assets/svg/gear.svg
new file mode 100644
index 0000000000..5c83950d21
--- /dev/null
+++ b/src/assets/svg/gear.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/assets/svg/help.svg b/src/assets/svg/help.svg
deleted file mode 100644
index 2eda224393..0000000000
--- a/src/assets/svg/help.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/src/assets/svg/house-filled-arrow-clockwise.svg b/src/assets/svg/house-filled-arrow-clockwise.svg
new file mode 100644
index 0000000000..33160799a7
--- /dev/null
+++ b/src/assets/svg/house-filled-arrow-clockwise.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/assets/svg/image.svg b/src/assets/svg/image.svg
new file mode 100644
index 0000000000..1aa7242149
--- /dev/null
+++ b/src/assets/svg/image.svg
@@ -0,0 +1,5 @@
+
diff --git a/src/assets/svg/ionic-log-out-outline.svg b/src/assets/svg/ionic-log-out-outline.svg
deleted file mode 100644
index c245269824..0000000000
--- a/src/assets/svg/ionic-log-out-outline.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/assets/svg/logo-google.svg b/src/assets/svg/logo-google.svg
new file mode 100644
index 0000000000..cadd26fb9b
--- /dev/null
+++ b/src/assets/svg/logo-google.svg
@@ -0,0 +1,6 @@
+
diff --git a/src/assets/svg/more.svg b/src/assets/svg/more.svg
deleted file mode 100644
index 9987c551da..0000000000
--- a/src/assets/svg/more.svg
+++ /dev/null
@@ -1,5 +0,0 @@
-
diff --git a/src/assets/svg/open-in-new-tab.svg b/src/assets/svg/open-in-new-tab.svg
index 8e908e6926..bce841ef7b 100644
--- a/src/assets/svg/open-in-new-tab.svg
+++ b/src/assets/svg/open-in-new-tab.svg
@@ -1,5 +1,5 @@
-