Skip to content

Commit 9eae36c

Browse files
committed
Update feedback ID generation logic in createFeedback.ts
1 parent 07bed27 commit 9eae36c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: apps/api/src/routes/createFeedback.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ app.openapi(route, async (c) => {
5454
}
5555

5656
return c.json({
57-
id: `${Date.now() + 1}`,
57+
id: `${Date.now()}`,
5858
from: 'bot',
5959
text: content,
6060
type: 'feedback'

0 commit comments

Comments
 (0)