We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fb75c8 commit 3030bc0Copy full SHA for 3030bc0
app/components/Package/ClaimPackageModal.vue
@@ -36,12 +36,12 @@ const isChecking = computed(() => {
36
})
37
38
const mergedError = computed(() => {
39
- return (
40
- publishError.value ??
41
- (checkError.value instanceof Error
42
- ? checkError.value.message
43
- : $t('claim.modal.failed_to_check'))
44
- )
+ return checkResult.value !== null
+ ? null
+ : (publishError.value ??
+ (checkError.value instanceof Error
+ ? checkError.value.message
+ : $t('claim.modal.failed_to_check')))
45
46
47
const connectorModal = useModal('connector-modal')
0 commit comments