We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b13c4f commit bfff9aeCopy full SHA for bfff9ae
frontend/app/src/widgets/evolutions-viewer/evolution-line.component.tsx
@@ -82,7 +82,7 @@ export const EvolutionLineComponent: FunctionComponent<{
82
while(true) {
83
completeEvolutionLine(targetChainLink, newEvolutionsForLine);
84
newFullEvolutionLine = initialEvolutionLine.concat(newEvolutionsForLine);
85
- if(!!comparePokemonsById(newFullEvolutionLine, fullEvolutionLine)) break;
+ if(!comparePokemonsById(newFullEvolutionLine, fullEvolutionLine)) break;
86
87
// Reset variables for another run
88
newEvolutionsForLine = [];
0 commit comments