Skip to content

Commit

Permalink
make version 2 the default
Browse files Browse the repository at this point in the history
  • Loading branch information
kiri23 committed Jul 11, 2024
1 parent b319351 commit fd4ba91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
export const handler: Handlers = {
GET(req, ctx) {
const url = new URL(req.url);
const version = url.searchParams.get("version") || "1";
const version = url.searchParams.get("version") || "2";
return ctx.render({ version });
},
};
Expand Down

0 comments on commit fd4ba91

Please sign in to comment.