Skip to content

Commit

Permalink
feat: speeded up nodes appearence
Browse files Browse the repository at this point in the history
  • Loading branch information
Rassl committed Dec 26, 2024
1 parent 10893b5 commit cb17c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/mindset/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export const MindSet = () => {

const [matchingLinks, remainingLinks] = edges.reduce<[Link[], Link[]]>(
([matches, remaining], link) => {
if (link?.properties?.start !== undefined && (link?.properties?.start as number) < currentTime) {
if (link?.properties?.start !== undefined && (link?.properties?.start as number) < currentTime + 3) {
matches.push(link)
} else {
remaining.push(link)
Expand Down

0 comments on commit cb17c96

Please sign in to comment.