Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
File renamed without changes.
6 changes: 0 additions & 6 deletions src/components/header/ButtonTray.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ export default function ButtonTray() {
open={activeDialog === "reset"}
onOpenChange={(open) => !open && setActiveDialog(null)}
description="Are you sure you want to reset your entire workspace? This will delete all semesters and courses."
onConfirm={confirmReset}
>
<div className="flex gap-4 mt-6 justify-center">
<button
Expand All @@ -178,7 +177,6 @@ export default function ButtonTray() {
open={activeDialog === "import"}
onOpenChange={(open) => !open && setActiveDialog(null)}
description="Importing will overwrite your current plan. This action cannot be undone."
onConfirm={confirmImport}
>
<div className="flex gap-4 mt-6 justify-center">
<button
Expand All @@ -202,10 +200,6 @@ export default function ButtonTray() {
open={activeDialog === "error"}
onOpenChange={(open) => !open && setActiveDialog(null)}
description="There was an error importing your file. Please make sure it is a valid CARPI file and try again."
onConfirm={() => {
setActiveDialog(null);
return true;
}}
>
<div className="flex gap-4 mt-6 justify-center">
<button
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
"noUncheckedSideEffectImports": true,

/* Base URL */

Copilot AI Apr 14, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tsconfig.app.json defines compilerOptions.paths but no compilerOptions.baseUrl. TypeScript requires baseUrl to be set when using paths, and because tsconfig.app.json does not extends the root tsconfig.json, the baseUrl from tsconfig.json will not apply during tsc -b. Add "baseUrl": "." here (or add an extends to inherit the root settings) to avoid TS5090/failed builds.

Suggested change
/* Base URL */
/* Base URL */
"baseUrl": ".",

Copilot uses AI. Check for mistakes.
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
"@/*": ["./src/*"]
}
},
"include": ["src"]
Expand Down
Loading