Skip to content

Commit

Permalink
matched casing
Browse files Browse the repository at this point in the history
  • Loading branch information
RGBKnights committed Jan 9, 2025
1 parent 68d3554 commit 5244cdb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/stores/iterate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 5244cdb

Please sign in to comment.