Skip to content

Commit

Permalink
chg: fix: remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
felipemarinho97 committed Jan 3, 2025
1 parent a1834ce commit 5c1ed50
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions front/packages/ui/src/player/components/right-buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { useAtom } from "jotai";
import { useTranslation } from "react-i18next";
import { Platform, View } from "react-native";
import { type Stylable, useYoshiki } from "yoshiki/native";
import { useDisplayName, useSubtitleName } from "../../utils";
import { useSubtitleName } from "../../utils";
import { fullscreenAtom, subtitleAtom } from "../state";
import { AudiosMenu, QualitiesMenu } from "../video";

Expand All @@ -49,7 +49,6 @@ export const RightButtons = ({
} & Stylable) => {
const { css } = useYoshiki();
const { t } = useTranslation();
const getDisplayName = useDisplayName();
const getSubtitleName = useSubtitleName();
const [isFullscreen, setFullscreen] = useAtom(fullscreenAtom);
const [selectedSubtitle, setSubtitle] = useAtom(subtitleAtom);
Expand Down

0 comments on commit 5c1ed50

Please sign in to comment.