Skip to content

Commit bfff9ae

Browse files
committed
Fix accidental second bang
1 parent 6b13c4f commit bfff9ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/app/src/widgets/evolutions-viewer/evolution-line.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const EvolutionLineComponent: FunctionComponent<{
8282
while(true) {
8383
completeEvolutionLine(targetChainLink, newEvolutionsForLine);
8484
newFullEvolutionLine = initialEvolutionLine.concat(newEvolutionsForLine);
85-
if(!!comparePokemonsById(newFullEvolutionLine, fullEvolutionLine)) break;
85+
if(!comparePokemonsById(newFullEvolutionLine, fullEvolutionLine)) break;
8686

8787
// Reset variables for another run
8888
newEvolutionsForLine = [];

0 commit comments

Comments
 (0)