fix: Missing .value led to the release dot always showing (#5500)

This commit is contained in:
Alexander Brown
2025-09-11 17:11:55 -07:00
committed by github-actions[bot]
parent 959ede2529
commit 60ae2d8b8d

View File

@@ -88,8 +88,8 @@ const { shouldShowRedDot: shouldShowConflictRedDot, markConflictsAsSeen } =
useConflictAcknowledgment()
// Use either release red dot or conflict red dot
const shouldShowRedDot = computed(() => {
const releaseRedDot = showReleaseRedDot
const shouldShowRedDot = computed((): boolean => {
const releaseRedDot = showReleaseRedDot.value
return releaseRedDot || shouldShowConflictRedDot.value
})