chore: remove unused types and code (#17999)

This commit is contained in:
Jason Rasmussen 2025-04-30 13:41:23 -04:00 committed by GitHub
parent 526c02297c
commit 1fde02ee1e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 13 additions and 73 deletions

View file

@ -46,7 +46,7 @@ export class SearchController {
@Get('explore')
@Authenticated()
getExploreData(@Auth() auth: AuthDto): Promise<SearchExploreResponseDto[]> {
return this.service.getExploreData(auth) as Promise<SearchExploreResponseDto[]>;
return this.service.getExploreData(auth);
}
@Get('person')