From 5244cdb3f75482a586cce274e0f501a3c6dd4829 Mon Sep 17 00:00:00 2001 From: RGBKnights Date: Wed, 8 Jan 2025 23:53:01 -0500 Subject: [PATCH] matched casing --- src/stores/iterate.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/stores/iterate.ts b/src/stores/iterate.ts index f0800a2..87e496a 100644 --- a/src/stores/iterate.ts +++ b/src/stores/iterate.ts @@ -123,10 +123,9 @@ export const useIterateStore = defineStore('iterate', { } }) .then(data => { - const { Id } = data; - this.id = Id + const { id } = data; + this.id = id this.interval = setInterval(() => this.next(), 1000) - this.next() }); }, stop() {