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">
|
<script setup lang="ts">
|
||||||
defineProps<{
|
defineProps<{
|
||||||
value: any;
|
value: any;
|
||||||
error: any;
|
error?: any;
|
||||||
placeholder: any;
|
placeholder: any;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue