Skip to content

Commit

Permalink
feat: change explore tab to collection tab
Browse files Browse the repository at this point in the history
Signed-off-by: James Chien <james@numbersprotocol.io>
  • Loading branch information
shc261392 committed Apr 24, 2024
1 parent 625dfa7 commit 65b1031
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ export class AppComponent {
'capture',
'profile',
'search',
'collection',
'edit',
'capture-rebrand-add',
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class ExploreTabComponent {
this.iframeService.exploreTabRefreshRequested$,
]).pipe(
map(([token, _]) => {
const url = `${BUBBLE_IFRAME_URL}/?token=${token.access}&refresh_token=${token.refresh}`;
const url = `${BUBBLE_IFRAME_URL}/collection?token=${token.access}&refresh_token=${token.refresh}`;
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
})
);
Expand Down
2 changes: 1 addition & 1 deletion src/app/features/home/home.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
<ng-template mat-tab-label>
<button mat-icon-button (click)="navigateToExploreTab()">
<mat-icon
svgIcon="search"
svgIcon="collection"
class="tab-action-button-icon"
joyrideStep="highlightHomeTab"
title="Home Tab"
Expand Down
1 change: 1 addition & 0 deletions src/assets/images/icons/collection.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 65b1031

Please sign in to comment.