Replace checklist badge with check icon
This commit is contained in:
@@ -44,9 +44,11 @@ export function SetupChecklist({
|
||||
<Text fontSize="$xs" fontWeight="700" color={theme.muted} textTransform="uppercase" letterSpacing={1}>
|
||||
{title}
|
||||
</Text>
|
||||
<PillBadge tone={isAllComplete ? 'success' : 'warning'}>
|
||||
{isAllComplete ? t('readiness.complete', 'Erledigt') : t('readiness.pending', 'Noch offen')}
|
||||
</PillBadge>
|
||||
{isAllComplete ? (
|
||||
<CheckCircle2 size={14} color={theme.successText} />
|
||||
) : (
|
||||
<PillBadge tone="warning">{t('readiness.pending', 'Noch offen')}</PillBadge>
|
||||
)}
|
||||
</XStack>
|
||||
|
||||
<XStack alignItems="center" space="$2">
|
||||
|
||||
Reference in New Issue
Block a user