Update progress bar initial value

This commit is contained in:
Chris Runnells 2023-08-29 14:57:10 -10:00
parent ba892c891d
commit 8fc9d33041
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ export const DefaultProgressHeader: React.FC< DefaultProgressHeaderProps > = ( {
<progress
className="woocommerce-task-progress-header__progress-bar"
max={ tasksCount }
value={ completedCount || 0.1 }
value={ completedCount || 0.25 }
/>
</>
) : null }