Skip to content

Commit 9f47cef

Browse files
committed
fix: extra unused var
1 parent 179d7da commit 9f47cef

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/rpc/src/utils/cache-invalidation.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,10 @@ export const invalidateBasicWebsiteCaches = async (
2020
* Invalidates all caches related to a specific website
2121
* @param websiteId - The ID of the website
2222
* @param userId - The ID of the user performing the action
23-
* @param reason - Optional reason for logging purposes
2423
*/
2524
export const invalidateWebsiteCaches = async (
2625
websiteId: string,
27-
userId: string,
28-
reason?: string
26+
userId: string
2927
): Promise<void> => {
3028
try {
3129
await Promise.all([

0 commit comments

Comments
 (0)