Skip to content

Commit 4d20ac6

Browse files
NicolappsConvex, Inc.
authored andcommitted
private-demos/nextjs-15-app: remove extraneous type (#42454)
GitOrigin-RevId: 029d811baf38b206fa2b16143afd049bb2556128
1 parent e7b6ee0 commit 4d20ac6

File tree

1 file changed

+1
-1
lines changed
  • npm-packages/private-demos/nextjs-15-app/convex

1 file changed

+1
-1
lines changed

npm-packages/private-demos/nextjs-15-app/convex/counter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const get = query({
55
args: {
66
counterName: v.string(),
77
},
8-
handler: async ({ db }, { counterName }: { counterName: string }) => {
8+
handler: async ({ db }, { counterName }) => {
99
const counterDoc = await db
1010
.query("counter_table")
1111
.filter((q) => q.eq(q.field("name"), counterName))

0 commit comments

Comments
 (0)