Skip to content

Commit

Permalink
fix(core): minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
MathurAditya724 committed Mar 19, 2024
1 parent a4a0cd8 commit 638c936
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions apps/sandbox/src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import { serve } from "@hono/node-server";
import { Hono } from "hono";
import {
type RateLimitInfo,
defaultKeyGenerator,
rateLimiter,
} from "hono-rate-limiter";
import { type RateLimitInfo, rateLimiter } from "hono-rate-limiter";
import { logger } from "hono/logger";
import Page from "./Page";

Expand All @@ -22,7 +18,6 @@ app.use(
windowMs: 10_000,
limit: 10,
handler: (_, next) => next(),
keyGenerator: defaultKeyGenerator,
}),
);

Expand Down

0 comments on commit 638c936

Please sign in to comment.