Mark error property as not required to prevent errors

This commit is contained in:
Ramon Wenger 2024-02-28 13:26:14 +01:00
parent 8afc7d2229
commit afa44d6a7c
2 changed files with 1 additions and 3 deletions

View File

@ -19,7 +19,7 @@
<script setup lang="ts">
defineProps<{
value: any;
error: any;
error?: any;
placeholder: any;
}>();

View File

@ -115,8 +115,6 @@ export const constructNoteMutation = (n) => {
variables,
});
console.log('fromStore', fromStore);
const entity = fromStore[type];
let bookmark = {
...entity.bookmark,