remove param

This commit is contained in:
Felix Ableitner 2024-11-28 11:47:28 +01:00
parent ca89a4f854
commit 8d545651a9

View file

@ -279,11 +279,11 @@ export class LemmyHttp {
*
* `HTTP.GET /account/settings`
*/
myUser(form: any, options?: RequestOptions) {
getMyUser(options?: RequestOptions) {
return this.#wrapper<object, MyUserInfo>(
HttpType.Get,
"/account/settings",
form,
{},
options,
);
}