fix client to api dtos again
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 7s
Build and Deploy API / build-and-deploy (push) Successful in 9s

This commit is contained in:
2026-03-21 17:41:11 -05:00
parent fc064dd01c
commit 4fe23699c8
9 changed files with 36 additions and 20 deletions

View File

@@ -21,7 +21,7 @@ onMounted(() => { // register callback for when component is loaded on page
<table>
<tr v-for="user in store.users" :key="user.id">
<td>{{ user.name }}</td>
<td>{{ user.username }}</td>
<td>
<router-link :to="`/user/${user.id}`">Edit</router-link>
<button @click="store.removeUser(user.id)">Delete</button>