Skip to content

Commit

Permalink
Fix navigation for custom request (#71)
Browse files Browse the repository at this point in the history
Co-authored-by: Vafeiadis Nikos <[email protected]>
  • Loading branch information
vafeini and vafeini authored Jun 25, 2024
1 parent 26d735b commit c13909b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class HomeComponent implements OnInit, OnDestroy {
filter((event): event is NavigationEnd => event instanceof NavigationEnd)
)
.subscribe((event) => {
if (event.url.includes('presentation/create')) {
if (event.url.includes('custom-request/create')) {
this.actions = PRESENTATION_ACTIONS;
this.requestCode = '';
this.disableNextButton(this.requestCode);
Expand Down

0 comments on commit c13909b

Please sign in to comment.