Skip to content

Commit ab7c846

Browse files
committed
refactor: Remove unnecessary console.log calls for specific steps
1 parent 67b8ee1 commit ab7c846

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

src/utils/getPacketForStep.ts

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,6 @@ export type PacketStep = {
1010
}
1111

1212
function getPacketForStep(step: number) {
13-
if (step === 3) {
14-
console.log('step % 2 === 1', step % 2 === 1)
15-
}
16-
if (step === 4) {
17-
console.log('step % 2 === 1', step % 2 === 1)
18-
}
19-
if (step === 5) {
20-
console.log('step % 2 === 1', step % 2 === 1)
21-
}
22-
if (step === 6) {
23-
console.log('step % 2 === 1', step % 2 === 1)
24-
}
25-
if (step === 7) {
26-
console.log('step % 2 === 1', step % 2 === 1)
27-
}
28-
if (step === 8) {
29-
console.log('step % 2 === 1', step % 2 === 1)
30-
}
3113
const packetStepMap: Record<number, PacketStep | null> = {
3214
0: {
3315
id: `packet-${Date.now()}`,

0 commit comments

Comments
 (0)