fix: Electron API and terminal websocket issues

This commit is contained in:
LukeGus
2025-11-03 15:21:43 -06:00
parent 5a8433debb
commit e998912353
3 changed files with 8 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ interface AuthProps extends React.ComponentProps<"div"> {
loggedIn: boolean;
authLoading: boolean;
setDbError: (error: string | null) => void;
dbError?: string | null;
onAuthSuccess: (authData: {
isAdmin: boolean;
username: string | null;
@@ -53,6 +54,7 @@ export function Auth({
loggedIn,
authLoading,
setDbError,
dbError,
onAuthSuccess,
...props
}: AuthProps) {