Add UI basics.

This commit is contained in:
Patrick Fic
2025-03-28 10:20:31 -07:00
parent ecab1e8f05
commit c33b02f77e
10 changed files with 142 additions and 81 deletions

View File

@@ -17,11 +17,9 @@ export async function handleQuickBookRequest(
res: Response,
): Promise<void> {
if (process.platform !== "win32") {
res
.status(500)
.json({
error: "QuickBooks Desktop integration is only available on Windows",
});
res.status(500).json({
error: "QuickBooks Desktop integration is only available on Windows",
});
return;
}