Skip to content

Commit aedfa0b

Browse files
fixes typo that caused error
1 parent 0458461 commit aedfa0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/vue-data-routes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ router.get("/user", async (req, res) => {
2828
router.get("/characters", async (req, res) => {
2929
// this is essentially the characters_list endpoint below, but just delivering data instead of a handlebars templateCharacter.findAll({ where: { userID: req.user.id } })
3030
try {
31-
const [characters, classes, heritages, uniheritages, ancestries] =
31+
const [characters, classes, heritages, uniHeritages, ancestries] =
3232
await Promise.all([
3333
Character.findAll({ where: { userID: req.user.id }, raw: true }),
3434
Class.findAll({ raw: true }),

0 commit comments

Comments
 (0)