Skip to content

Commit ade16e1

Browse files
committed
review fix
1 parent ca97557 commit ade16e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/open-next/src/types/cache.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export type TagCacheMetaFile = {
9898
revalidatedAt: { N: string };
9999
};
100100

101-
// Cache context since https://github.com/vercel/next.js/pull/76207
101+
// Cache context since vercel/next.js#76207
102102
interface SetIncrementalFetchCacheContext {
103103
fetchCache: true;
104104
fetchUrl?: string;
@@ -124,14 +124,14 @@ interface SetIncrementalResponseCacheContext {
124124
isFallback?: boolean;
125125
}
126126

127-
// Before #76207 revalidate was passed this way
127+
// Before vercel/next.js#76207 revalidate was passed this way
128128
interface SetIncrementalCacheContext {
129129
revalidate?: number | false;
130130
isRoutePPREnabled?: boolean;
131131
isFallback?: boolean;
132132
}
133133

134-
// Before https://github.com/vercel/next.js/pull/53321 context on set was just the revalidate
134+
// Before vercel/next.js#53321 context on set was just the revalidate
135135
type OldSetIncrementalCacheContext = number | false | undefined;
136136

137137
export type IncrementalCacheContext =

0 commit comments

Comments
 (0)