From 28aea064381885413812fc07d603098bd20d55ea Mon Sep 17 00:00:00 2001 From: CD-Z Date: Sun, 14 Jul 2024 21:01:33 +0200 Subject: [PATCH] fixed lint issues again --- .../reader/ChapterLoadingScreen/ChapterLoadingScreen.tsx | 2 -- src/screens/reader/components/SkeletonLines.tsx | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/screens/reader/ChapterLoadingScreen/ChapterLoadingScreen.tsx b/src/screens/reader/ChapterLoadingScreen/ChapterLoadingScreen.tsx index 42eacd620..a40a39137 100644 --- a/src/screens/reader/ChapterLoadingScreen/ChapterLoadingScreen.tsx +++ b/src/screens/reader/ChapterLoadingScreen/ChapterLoadingScreen.tsx @@ -9,7 +9,6 @@ const ChapterLoadingScreen = ({ onPress }: { onPress: () => void }) => { const { theme: backgroundColor, padding, - textSize, lineHeight, } = useChapterReaderSettings(); @@ -33,7 +32,6 @@ const ChapterLoadingScreen = ({ onPress }: { onPress: () => void }) => { : color(backgroundColor).negate().darken(0.92).toString() : color(backgroundColor).darken(0.08).toString() } - textSize={textSize} lineHeight={lineHeight} /> diff --git a/src/screens/reader/components/SkeletonLines.tsx b/src/screens/reader/components/SkeletonLines.tsx index 3011ac857..85b01e470 100644 --- a/src/screens/reader/components/SkeletonLines.tsx +++ b/src/screens/reader/components/SkeletonLines.tsx @@ -6,7 +6,6 @@ import { LinearGradient } from 'expo-linear-gradient'; const SkeletonLines = ({ width, lineHeight, - textSize, containerWidth, containerHeight, containerMargin, @@ -15,7 +14,6 @@ const SkeletonLines = ({ }: { width?: string | number; lineHeight: number; - textSize: number; containerWidth: `${number}%` | number; containerHeight: `${number}%` | number; containerMargin?: `${number}%` | number;