Skip to content

Commit

Permalink
invalid method, api expects a get instead of post (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
habby1337 authored Aug 8, 2023
1 parent d02e40b commit fa706f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/methods/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export class Registry extends Method {
public async brandsLogosList(): Promise<Array<BrandLogo>> {
const url = `registry/alllogos`

const response = await this.axiosClient.post<BrandsLogosListResponse>(
const response = await this.axiosClient.get<BrandsLogosListResponse>(
url,
{}
)
Expand Down

0 comments on commit fa706f3

Please sign in to comment.