Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bot comment
  • Loading branch information
aadesh18 committed May 4, 2026
commit f79413a320ce19364513a74fe8cfe176e7ae17af
2 changes: 1 addition & 1 deletion packages/stack-cli/src/commands/fix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function abortablePrompt<T>(promise: Promise<T>): Promise<T> {
try {
return await promise;
} catch (error: unknown) {
if (error != null && typeof error === "object" && "name" in error && (error as { name: unknown }).name === "ExitPromptError") {
if (error != null && typeof error === "object" && "name" in error && error.name === "ExitPromptError") {
console.log("\nAborted.");
process.exit(0);
}
Expand Down
Loading