|
@@ -196,7 +196,7 @@ export const useMainStore = defineStore("MainStoreId", {
|
|
|
await this.checkApiError(error);
|
|
|
}
|
|
|
},
|
|
|
- async passwordRecovery(payload: {username: string }) {
|
|
|
+ async passwordRecovery(username: string) {
|
|
|
const loadingNotification = {
|
|
|
content: "Sending password recovery email",
|
|
|
showProgress: true,
|
|
@@ -204,7 +204,7 @@ export const useMainStore = defineStore("MainStoreId", {
|
|
|
try {
|
|
|
this.addNotification(loadingNotification);
|
|
|
await Promise.all([
|
|
|
- api.passwordRecovery(payload.username),
|
|
|
+ api.passwordRecovery(username),
|
|
|
await new Promise<void>((resolve, _) => setTimeout(() => resolve(), 500)),
|
|
|
]);
|
|
|
this.removeNotification(loadingNotification);
|