Skip to content

Commit

Permalink
Whoops, left a chunk out of the last commit: s/ResponseList2/Response…
Browse files Browse the repository at this point in the history
…List
  • Loading branch information
andymatuschak committed Apr 18, 2024
1 parent eb51358 commit dc9f16f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/api/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const listEvents: TypedRouteHandler<OrbitAPI.Spec, "/events", "GET"> =
predicate: query.entityID ? ["entityID", "=", query.entityID] : undefined,
});

let results: OrbitAPI.ResponseList2<Event>;
let results: OrbitAPI.ResponseList<Event>;
if (query.limit === undefined) {
results = {
type: "list",
Expand Down

0 comments on commit dc9f16f

Please sign in to comment.