refactor: update api calls since we changed routes

This commit is contained in:
Derrick Hammer 2024-03-19 07:59:39 -04:00
parent c0345dec11
commit 788e424841
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ import {
OTPVerifyRequest, OTPVerifyRequest,
PasswordResetVerifyRequest, PasswordResetVerifyRequest,
PingResponse, PingResponse,
postApiAuthPasswordResetRequest, postApiAccountPasswordResetRequest,
postApiAuthPing, postApiAuthPing,
RegisterRequest, RegisterRequest,
UploadLimitResponse, UploadLimitResponse,
@ -154,7 +154,7 @@ export class AccountApi {
): Promise<boolean> { ): Promise<boolean> {
let ret: AxiosResponse<void>; let ret: AxiosResponse<void>;
try { try {
ret = await postApiAuthPasswordResetRequest( ret = await postApiAccountPasswordResetRequest(
passwordResetRequest, passwordResetRequest,
this.buildOptions(), this.buildOptions(),
); );