Skip to content

Commit 81b2cc1

Browse files
author
Shubham Naik
committed
chore: fix cla
1 parent 6791f2f commit 81b2cc1

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"bugs": "https://github.com/letta-ai/create-letta-app/issues",
1010
"dependencies": {
1111
"@inquirer/prompts": "^7.4.1",
12-
"@letta-ai/letta-client": "^0.1.93",
12+
"@letta-ai/letta-client": "^0.1.132",
1313
"@oclif/core": "^4",
1414
"@oclif/plugin-help": "^6",
1515
"@oclif/plugin-plugins": "^5",

src/utils/project-selector/project-selector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ interface Response {
1010

1111
export async function projectSelector(apiKey: string): Promise<Response> {
1212
const client = getLettaClient(apiKey);
13-
const debouncedListProjects = debounceAsyncFn((args: { name?: string }) => client.projects.listprojects({
13+
const debouncedListProjects = debounceAsyncFn((args: { name?: string }) => client.projects.list({
1414
...args,
1515
limit: 5,
1616
}), 500);

0 commit comments

Comments
 (0)