Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
timonson committed Mar 30, 2022
1 parent 4007c75 commit 811a8be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Portal } from "../mod.ts";

const app = new Portal();

app.get({ pathname: "/(|world)" }, (ctx) => new Response("Hello World"));
app.get({ pathname: "/(|world)" }, (_ctx) => new Response("Hello World"));

app.get(
{ pathname: "/:hello" },
Expand Down

0 comments on commit 811a8be

Please sign in to comment.