Skip to content

Commit

Permalink
fix: remove messages hidding
Browse files Browse the repository at this point in the history
  • Loading branch information
FeckNeck committed Nov 12, 2023
1 parent 6b66dbd commit e1543f2
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions app/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,8 @@ const transmogWeapon = async () => {
);
success.value = "Weapon transmogged successfully !";
setTimeout(() => {
success.value = null;
}, 3000);
} catch (e: any) {
error.value = e;
setTimeout(() => {
error.value = null;
}, 3000);
} finally {
isLoading.value = false;
}
Expand Down

0 comments on commit e1543f2

Please sign in to comment.