From 488c817892a15485c22f1b499f9ed5cffe23c7c0 Mon Sep 17 00:00:00 2001 From: Benard Mathu Date: Tue, 1 Aug 2023 01:03:04 +0300 Subject: [PATCH] fix lint issues --- src/components/ListButton.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/ListButton.tsx b/src/components/ListButton.tsx index 1f05fd6..702b95d 100644 --- a/src/components/ListButton.tsx +++ b/src/components/ListButton.tsx @@ -1,10 +1,9 @@ import React, { useCallback, useState } from 'react'; -import { StyleSheet, TouchableOpacityProps, View } from 'react-native'; +import { StyleSheet, TouchableOpacityProps } from 'react-native'; import ChevronRight from '@/assets/icons/chevron-right.svg'; import styled from 'styled-components/native'; import { THEME_COLOR } from '@/CONSTANTS'; import useDefaultStyles from './Colors'; -import { Text } from './Typography'; const BUTTON_SIZE = 14; @@ -37,7 +36,7 @@ function generateListButtonStyles() { hideDescription: { display: 'none' } - }) + }); } const ListButton: React.FC = ({ children, ...props }) => {