Skip to content
This repository was archived by the owner on Dec 16, 2025. It is now read-only.

Commit 183179b

Browse files
committed
Remove redundant check
1 parent 6f90a4a commit 183179b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google-codelab.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ <h2>Would you like to resume where you left off?</h2>
469469
if (!this.steps.length) {
470470
return false;
471471
}
472-
return !this.steps.length || stepIndex >= this.steps.length - 1;
472+
return stepIndex >= this.steps.length - 1;
473473
},
474474

475475
_showDoneFab: function(stepIndex, steps) {

0 commit comments

Comments
 (0)