Skip to content

Commit c958d88

Browse files
jeanfbritoclaude
andcommitted
fix: Resolve lint errors from master merge
Fixed formatting issues in videoCallWindow files that were introduced in recent master commits. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent c5039ca commit c958d88

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

src/videoCallWindow/ipc.ts

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -638,17 +638,19 @@ export const startVideoCallWindowHandler = (): void => {
638638
);
639639
console.log('Video call window: Loading HTML file from:', htmlPath);
640640

641-
videoCallWindow.loadFile(htmlPath, {
642-
query: {
643-
url: url,
644-
autoOpenDevtools: String(state.isAutoOpenEnabled),
645-
},
646-
}).catch((error) => {
647-
console.error('Video call window: Failed to load HTML file:', error);
648-
console.error(
649-
'This may indicate build issues or file system problems on low-power devices'
650-
);
651-
});
641+
videoCallWindow
642+
.loadFile(htmlPath, {
643+
query: {
644+
url,
645+
autoOpenDevtools: String(state.isAutoOpenEnabled),
646+
},
647+
})
648+
.catch((error) => {
649+
console.error('Video call window: Failed to load HTML file:', error);
650+
console.error(
651+
'This may indicate build issues or file system problems on low-power devices'
652+
);
653+
});
652654

653655
videoCallWindow.once('ready-to-show', () => {
654656
if (videoCallWindow && !videoCallWindow.isDestroyed()) {

src/videoCallWindow/video-call-window.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ const showFallbackUI = () => {
103103
}, 3000);
104104
};
105105

106-
107106
const start = async (): Promise<void> => {
108107
if (isWindowDestroying) {
109108
console.log(

src/videoCallWindow/videoCallWindow.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,8 @@ const VideoCallWindow = () => {
862862
inset: 0,
863863
width: '100%',
864864
height: '100%',
865-
visibility: showError || showLoading || isLoading ? 'hidden' : 'visible',
865+
visibility:
866+
showError || showLoading || isLoading ? 'hidden' : 'visible',
866867
zIndex: 0,
867868
}}
868869
/>

0 commit comments

Comments
 (0)