Skip to content
This repository was archived by the owner on Mar 1, 2026. It is now read-only.

Commit c413572

Browse files
committed
update cache key
1 parent 4812270 commit c413572

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/orm/src/client/crud/validator/cache-decorator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function cache() {
2121
// Build cache key object
2222
const cacheKeyObj: Record<string, unknown> = {
2323
$call: propertyKey,
24-
...args.map((arg) => {
24+
$args: args.map((arg) => {
2525
if (Array.isArray(arg)) {
2626
// sort array arguments for consistent cache keys
2727
return [...arg].sort();

0 commit comments

Comments
 (0)