Skip to content

Commit

Permalink
fix: lint some files
Browse files Browse the repository at this point in the history
  • Loading branch information
bhajneet committed Aug 2, 2021
1 parent 9b5ad36 commit dd9115e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/screens/Gurbani/BottomBar.tsx
Expand Up @@ -5,7 +5,6 @@ import { useNavigation } from '@react-navigation/native'
import { SafeAreaView } from 'react-native-safe-area-context'
import { useQuery } from 'react-query'

import defaultFolderData from '../../defaults/collections.json'
import Screens from '../../lib/screens'
import { px, py } from '../../themes/utils'
import Button from '../../components/Button'
Expand Down Expand Up @@ -53,7 +52,7 @@ const BottomBar = () => {
const onSearchPress = () => navigation.navigate( Screens.Search )
const onBookmarkPress = () => navigation.navigate(
Screens.Bookmarks,
{ folderData: defaultFolderData },
{ folderData },
)

return (
Expand Down
2 changes: 1 addition & 1 deletion src/screens/Gurbani/Line.tsx
@@ -1,6 +1,6 @@
import React from 'react'
import { toUnicode } from 'gurmukhi-utils'
import { StyleSheet, View, Text } from 'react-native'
import { StyleSheet, View } from 'react-native'

import { TranslationData } from '../../types/data'
import Languages from '../../lib/languages'
Expand Down
2 changes: 0 additions & 2 deletions src/screens/Search/Result.tsx
Expand Up @@ -3,8 +3,6 @@ import React from 'react'
import { StyleSheet, View, Pressable, PressableProps, ViewStyle } from 'react-native'

import Typography from '../../components/Typography'
import Colors from '../../themes/colors'
import Fonts from '../../themes/fonts'
import { px, py } from '../../themes/utils'

const styles = StyleSheet.create( {
Expand Down

0 comments on commit dd9115e

Please sign in to comment.