Skip to content

Commit 9fa5eef

Browse files
committed
Format code and fix spacing between comments
1 parent a31af8e commit 9fa5eef

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ createApp({ render: () => h(App) })
77
.use(store)
88
.use(veProgress)
99
.mount("#app");
10-
/*eslint-disable*/
10+
/* eslint-disable */
1111
store.dispatch("loadUser").then(
1212
(success) => {
1313
console.log("User data loaded successfully!");
1414
},
1515
(error) => {
1616
console.log("User data failed to load.");
17-
}
17+
},
1818
); //load user data
1919
store.dispatch("loadTodos").then(
2020
(success) => {
2121
console.log("Task list data loaded successfully!");
2222
},
2323
(error) => {
2424
console.log("Task list data failed to load.");
25-
}
25+
},
2626
); //load task list data
27-
/*eslint-enable*/
27+
/* eslint-enable */

0 commit comments

Comments
 (0)