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"> <script setup lang="ts">
defineProps<{ defineProps<{
value: any; value: any;
error: any; error?: any;
placeholder: any; placeholder: any;
}>(); }>();

View File

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