Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
romanzipp committed Jun 24, 2024
1 parent 4240cd0 commit 9e3cb22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/entries/contentScript/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import StreamerModeNotice from '~/entries/contentScript/components/StreamerModeN
import { usePage } from '~/hooks/usePage';
import { useBackgroundEvents } from '~/entries/contentScript/hooks/useBackgroundEvents';
import AnalyticsNotice from '~/entries/contentScript/components/AnalyticsNotice';
import Footer from '~/entries/contentScript/components/Footer';
import { storageGetCompact, storageSetCompact } from '~/entries/background/common/storage';
import CommunityNoteNoticeComingSoon from '~/entries/contentScript/components/CommunityNoteNoticeComingSoon';

Expand Down
5 changes: 3 additions & 2 deletions src/entries/contentScript/components/AppContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Toaster } from 'react-hot-toast';
import { useAppStore } from '~/entries/contentScript/state';
import Logo from '~/components/Logo';
import DevTools from '~/entries/contentScript/components/DevTools';
import { childrenShape } from '~/shapes';
import { childrenShape, streamShape } from '~/shapes';
import { STATE_DEFAULT, STATE_LIVE, STATE_OWN_VIDEO } from '~/hooks/useAuth';
import SubwaySurfer from '~/entries/contentScript/components/SubwaySurfer';
import Footer from '~/entries/contentScript/components/Footer';
Expand All @@ -17,7 +17,7 @@ function AppContainer({
dark,
user,
state,
liveStream,
liveStream = null,
isTrackingVideos = undefined,
}) {
const isVisible = useAppStore((storeState) => storeState.isVisible);
Expand Down Expand Up @@ -132,6 +132,7 @@ AppContainer.propTypes = {
STATE_LIVE,
STATE_OWN_VIDEO,
]),
liveStream: streamShape,
isTrackingVideos: PropTypes.bool,
};

Expand Down

0 comments on commit 9e3cb22

Please sign in to comment.