From 6c7030cb13a0338f448cff8b18f16228024636b0 Mon Sep 17 00:00:00 2001 From: TheBrokenRail <17478432+TheBrokenRail@users.noreply.github.com> Date: Fri, 20 Oct 2023 20:55:23 -0400 Subject: [PATCH] Fix `updateTotp` Type Information (#205) --- src/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http.ts b/src/http.ts index e95c65e..785334e 100644 --- a/src/http.ts +++ b/src/http.ts @@ -300,7 +300,7 @@ export class LemmyHttp { * `HTTP.POST /user/totp/update` */ updateTotp(form: UpdateTotp) { - return this.#wrapper( + return this.#wrapper( HttpType.Post, "/user/totp/update", form,