@@ -25,11 +25,7 @@ import { ActivatedRoute, Router, RouterLink } from '@angular/router';
2525import { UserSelectors } from '@core/store/user' ;
2626import { DeleteComponentDialogComponent , ForkDialogComponent } from '@osf/features/project/overview/components' ;
2727import { ClearProjectOverview , GetProjectById , ProjectOverviewSelectors } from '@osf/features/project/overview/store' ;
28- import {
29- ClearRegistryOverview ,
30- GetRegistryById ,
31- RegistryOverviewSelectors ,
32- } from '@osf/features/registry/store/registry-overview' ;
28+ import { ClearRegistry , GetRegistryById , RegistrySelectors } from '@osf/features/registry/store/registry' ;
3329import { ContributorsListComponent } from '@osf/shared/components/contributors-list/contributors-list.component' ;
3430import { CustomPaginatorComponent } from '@osf/shared/components/custom-paginator/custom-paginator.component' ;
3531import { IconComponent } from '@osf/shared/components/icon/icon.component' ;
@@ -72,9 +68,9 @@ export class ViewDuplicatesComponent {
7268 private router = inject ( Router ) ;
7369 private destroyRef = inject ( DestroyRef ) ;
7470 private project = select ( ProjectOverviewSelectors . getProject ) ;
75- private registration = select ( RegistryOverviewSelectors . getRegistry ) ;
71+ private registration = select ( RegistrySelectors . getRegistry ) ;
7672 private isProjectAnonymous = select ( ProjectOverviewSelectors . isProjectAnonymous ) ;
77- private isRegistryAnonymous = select ( RegistryOverviewSelectors . isRegistryAnonymous ) ;
73+ private isRegistryAnonymous = select ( RegistrySelectors . isRegistryAnonymous ) ;
7874
7975 duplicates = select ( DuplicatesSelectors . getDuplicates ) ;
8076 isDuplicatesLoading = select ( DuplicatesSelectors . getDuplicatesLoading ) ;
@@ -127,7 +123,7 @@ export class ViewDuplicatesComponent {
127123 getDuplicates : GetAllDuplicates ,
128124 clearDuplicates : ClearDuplicates ,
129125 clearProject : ClearProjectOverview ,
130- clearRegistration : ClearRegistryOverview ,
126+ clearRegistration : ClearRegistry ,
131127 getComponentsTree : GetResourceWithChildren ,
132128 } ) ;
133129
0 commit comments