Skip to content

Commit 9da2f9e

Browse files
committed
fix: small db fix and clerk version bump
1 parent 7a0823b commit 9da2f9e

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"dependencies": {
3-
"@clerk/clerk-react": "^5.22.13"
3+
"@clerk/clerk-react": "^5.49.0"
44
}
55
}

frameworks/react-cra/add-ons/db/assets/src/routes/demo.db-chat-api.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { createFileRoute } from '@tanstack/react-router'
2+
import { json } from '@tanstack/react-start'
23

34
import { createCollection, localOnlyCollectionOptions } from '@tanstack/db'
45
import { z } from 'zod'
@@ -72,6 +73,7 @@ export const Route = createFileRoute('/demo/db-chat-api')({
7273
return new Response(message.error.message, { status: 400 })
7374
}
7475
sendMessage(message.data)
76+
return json(message.data)
7577
},
7678
},
7779
},

packages/cta-engine/src/create-app.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ Use the following commands to start your app:
234234
getPackageManagerScriptCommand(options.packageManager, ['dev']),
235235
)}
236236
237-
Please read the README.md for information on testing, styling, adding routes, etc.${errorStatement}`,
237+
Please check the README.md for information on testing, styling, adding routes, etc.${errorStatement}`,
238238
)
239239
}
240240

0 commit comments

Comments
 (0)