Skip to content

Commit d3bdf05

Browse files
Shawclaude
andcommitted
chore(cloud/api): biome format birdeye redirect block
Run `biome format --write` on bootstrap-app.ts to satisfy Cloud Tests > lint-and-types after the previous middleware addition. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 5ff7944 commit d3bdf05

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

cloud/apps/api/src/bootstrap-app.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ export function createApp(): Hono<AppEnv> {
4949
// splat-mounted sub-app.
5050
app.all("/api/v1/proxy/birdeye/*", (c) => {
5151
const url = new URL(c.req.url);
52-
url.pathname = url.pathname.replace(
53-
"/api/v1/proxy/birdeye",
54-
"/api/v1/apis/birdeye",
55-
);
52+
url.pathname = url.pathname.replace("/api/v1/proxy/birdeye", "/api/v1/apis/birdeye");
5653
return c.redirect(url.toString(), 308);
5754
});
5855

0 commit comments

Comments
 (0)