Update the character list to use the server side table stuff

This commit is contained in:
iamBadgers
2024-06-09 19:11:41 -07:00
parent aa4f17df06
commit 1544117aae
5 changed files with 65 additions and 47 deletions

View File

@@ -100,12 +100,12 @@ const appHeaders: ReadonlyHeaders = [
const gameId = ref(route.params.gameId)
const game = ref<Game>({
id: 0,
title: "",
gamemaster: "",
title: '',
gamemaster: '',
payoutEB: 0,
payoutIP: 0,
payoutLoot: "",
status: "",
payoutLoot: '',
status: '',
postdate: 0
})
const picks = ref<GameCharacter[]>([])