[refactor] cleanup dead code

This commit is contained in:
nymkappa
2024-03-21 18:14:35 +09:00
parent 78f03bd6d5
commit ea94dfcd6b
7 changed files with 0 additions and 71 deletions

View File

@@ -104,12 +104,6 @@ export class ServicesApiServices {
return this.httpClient.get<any>(`${SERVICES_API_PREFIX}/account`);
}
getNodeOwner$(publicKey: string): Observable<any> {
let params = new HttpParams()
.set('node_public_key', publicKey);
return this.httpClient.get<any>(`${SERVICES_API_PREFIX}/lightning/claim/current`, { params, observe: 'response' });
}
getUserMenuGroups$(): Observable<MenuGroup[]> {
const auth = this.storageService.getAuth();
if (!auth) {