We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65e3459 commit b445610Copy full SHA for b445610
src/front-end/app/views/home/profile.vue
@@ -57,15 +57,14 @@ const Profile = defineComponent({
57
this.name = session.name;
58
} catch (ex) {
59
await this.$store.dispatch("alert", { text: `Error: ${ex}` });
60
+ return;
61
} finally {
62
input.value = "";
63
}
64
- requestAnimationFrame(async () => {
65
- this.upToDate = true;
66
- await this.$store.dispatch("alert", {
67
- text: "Profile imported successfully",
68
- });
+ this.upToDate = true;
+ await this.$store.dispatch("alert", {
+ text: "Profile imported successfully",
69
});
70
},
71
submit() {
0 commit comments