Skip to content

Commit

Permalink
fix: correct import path for ZipHandler in BackgroundService
Browse files Browse the repository at this point in the history
- Updated the import statement for ZipHandler in BackgroundService.ts to use the correct casing, ensuring proper module resolution and preventing potential runtime errors.
  • Loading branch information
mamertofabian committed Dec 2, 2024
1 parent 46d197e commit ac4ce2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/background/BackgroundService.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { GitHubService } from '../services/GitHubService';
import type { Message, MessageType, Port, UploadStatusState } from '../lib/types';
import { StateManager } from './StateManager';
import { ZipHandler } from '../services/ZipHandler';
import { ZipHandler } from '../services/zipHandler';

export class BackgroundService {
private stateManager: StateManager;
Expand Down

0 comments on commit ac4ce2c

Please sign in to comment.