feat(dependencies): fix versions

This commit is contained in:
Pihkaal
2024-09-12 17:49:31 +02:00
parent 912ce3a676
commit a2c11561bf
3 changed files with 435 additions and 431 deletions

View File

@@ -47,7 +47,7 @@ const FrequencyBar = (props: {
bar += `${" ".repeat(WIDTH)}\n`.repeat(Math.max(emptyBlocksCount, 0));
if (remainderIndex > 0) {
bar += `${GRADIENT[remainderIndex]!.repeat(WIDTH)}\n`;
bar += `${GRADIENT[remainderIndex].repeat(WIDTH)}\n`;
}
bar += `${FULL_BLOCK.repeat(WIDTH)}\n`.repeat(fullBlocksCount);
}