Skip to content

Commit

Permalink
Fix tsc error
Browse files Browse the repository at this point in the history
  • Loading branch information
personalizedrefrigerator committed Jan 24, 2025
1 parent d3f0e1c commit 956e1af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/app-desktop/gui/Navigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ import bridge from '../services/bridge';
import { useContext, useEffect, useMemo, useRef } from 'react';
import { WindowIdContext } from './NewWindowOrIFrame';

// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Partially refactor of code before rule was applied
type ScreenProps = any;

interface AppScreen {
screen: React.ComponentType;
screen: React.ComponentType<ScreenProps>;
title?: ()=> string;
}

Expand Down

0 comments on commit 956e1af

Please sign in to comment.