Mark error property as not required to prevent errors
This commit is contained in:
parent
8afc7d2229
commit
afa44d6a7c
|
|
@ -19,7 +19,7 @@
|
|||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
value: any;
|
||||
error: any;
|
||||
error?: any;
|
||||
placeholder: any;
|
||||
}>();
|
||||
|
||||
|
|
|
|||
|
|
@ -115,8 +115,6 @@ export const constructNoteMutation = (n) => {
|
|||
variables,
|
||||
});
|
||||
|
||||
console.log('fromStore', fromStore);
|
||||
|
||||
const entity = fromStore[type];
|
||||
let bookmark = {
|
||||
...entity.bookmark,
|
||||
|
|
|
|||
Loading…
Reference in New Issue