Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/lib/e2b-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class E2BService {
* Get E2B API key from environment
*/
private getApiKey(): string | null {
return process.env.E2B_API_KEY || (import.meta as any).env?.VITE_E2B_API_KEY || null;
return process.env.E2B_API_KEY || (import.meta as { env?: { VITE_E2B_API_KEY?: string } }).env?.VITE_E2B_API_KEY || null;
}

/**
Expand Down
Loading