From adc1bba9e0362cccf0b3f6fbf0ff7956f1db42e3 Mon Sep 17 00:00:00 2001 From: Vixalie Date: Tue, 11 Mar 2025 09:33:02 +0800 Subject: [PATCH] fix typo in Pattern defination. --- src/context/Patterns.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/Patterns.tsx b/src/context/Patterns.tsx index 2dbd8ed..8a97260 100644 --- a/src/context/Patterns.tsx +++ b/src/context/Patterns.tsx @@ -91,7 +91,7 @@ export class Pattern { this.createdAt = dayjs().valueOf(); this.lastModifiedAt = null; this.smoothRepeat = true; - this.Pulses = []; + this.pulses = []; } }