Skip to content

Commit e0bc614

Browse files
committed
mv const
1 parent c7e4796 commit e0bc614

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/open-next/src/overrides/tagCache/fs-dev-nextMode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export default {
2929
}
3030

3131
const hasRevalidatedTag = tags.some((tag) => {
32-
const lastModifiedTime = tagsMap.get(tag);
33-
return lastModifiedTime ? lastModifiedTime > (lastModified ?? 0) : false;
32+
const tagRevalidatedAt = tagsMap.get(tag);
33+
return tagRevalidatedAt ? tagRevalidatedAt > (lastModified ?? 0) : false;
3434
});
3535

3636
debug("hasBeenRevalidated result:", hasRevalidatedTag);

0 commit comments

Comments
 (0)