Skip to content

Commit

Permalink
fix: Update message signature default value (#9446)
Browse files Browse the repository at this point in the history
  • Loading branch information
scmmishra committed May 9, 2024
1 parent b110ff5 commit 05f0398
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -38,7 +38,7 @@ const signature = ref(props.messageSignature);
const emit = defineEmits(['update-signature']);
watch(
() => props.messageSignature,
() => props.messageSignature ?? '',
newValue => {
signature.value = newValue;
}
Expand Down

0 comments on commit 05f0398

Please sign in to comment.