Skip to content

Commit 44e9063

Browse files
committed
chore: format
1 parent 3e9c57b commit 44e9063

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

packages/app/server/api/repo/search.get.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default defineEventHandler(async (event) => {
2323

2424
await app.eachInstallation(async ({ octokit, installation }) => {
2525
if (signal.aborted) return;
26-
26+
2727
if (installation.suspended_at) {
2828
console.warn(`Skipping suspended installation ${installation.id}`);
2929
return;
@@ -60,7 +60,10 @@ export default defineEventHandler(async (event) => {
6060
});
6161
}
6262
} catch (error) {
63-
console.warn(`Error fetching repositories for installation ${installation.id}:`, error);
63+
console.warn(
64+
`Error fetching repositories for installation ${installation.id}:`,
65+
error,
66+
);
6467
}
6568
});
6669

packages/cli/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const main = defineCommand({
7474
description: "use `yarn pack` instead of `npm pack --json`",
7575
},
7676
bun: {
77-
"type": "boolean",
77+
type: "boolean",
7878
description: "use `bun pm pack` instead of `npm pack --json`",
7979
},
8080
template: {

0 commit comments

Comments
 (0)