aboutsummaryrefslogtreecommitdiff
path: root/packages/sdk
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-03 21:32:11 -0800
committerFuwn <[email protected]>2026-02-03 21:32:11 -0800
commitbb42db3797283d6e27a077e45a6298862fed9c36 (patch)
tree42693fadcf82ebcebbc0236efb5e9f2d80a01cb7 /packages/sdk
parenttest(sdk): Add local embedding provider tests (diff)
downloadarchived-imemio-bb42db3797283d6e27a077e45a6298862fed9c36.tar.xz
archived-imemio-bb42db3797283d6e27a077e45a6298862fed9c36.zip
refactor(sdk): Use self-documenting variable names
Diffstat (limited to 'packages/sdk')
-rw-r--r--packages/sdk/src/supabase-store.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sdk/src/supabase-store.ts b/packages/sdk/src/supabase-store.ts
index c8465c4..7f69791 100644
--- a/packages/sdk/src/supabase-store.ts
+++ b/packages/sdk/src/supabase-store.ts
@@ -190,7 +190,7 @@ export class SupabaseStore implements MemoryStore {
if (filter?.tags && filter.tags.length > 0) {
query = query.contains(
"tags",
- filter.tags.map((id) => ({ id })),
+ filter.tags.map((tagId) => ({ id: tagId })),
);
}