Skip to content

Commit

Permalink
Refactor component import casing for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
noriega2112 committed Aug 29, 2024
1 parent 09a5bc8 commit 933b8e2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'
import { Text, View } from 'react-native'

import { MultiPlatformSafeAreaView } from '@components/multi-platform-safe-area-view'
import { BButton } from '@components/button'
import { BButton } from '@components/Button'

export function ComponentsPreview() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BButton } from '@components/button'
import { BButton } from '@components/Button'
import { MultiPlatformSafeAreaView } from '@components/multi-platform-safe-area-view'
import { SHEET_NAMES } from '@components/sheets'
import { useLogout } from '@services/user'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Text, View } from 'react-native'
import { BButton } from '@components/button'
import { BButton } from '@components/Button'
import { Container } from '@components/container'
import { getNavio } from '..'
import { ContactEmailButton } from '@components/contact-email-button'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { getNavio } from '..'
import { ErrorMessage } from '@components/errors'
import { Ionicons } from '@expo/vector-icons'
import colors from '@utils/colors'
import { BButton } from '@components/button'
import { BButton } from '@components/Button'
import { isAxiosError } from 'axios'

const Separator = () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { BButton } from '@components/button'
import { BButton } from '@components/Button'
import { MaterialIcons, Ionicons, AntDesign } from '@expo/vector-icons'
import { useLogout, useUser } from '@services/user'
import * as Application from 'expo-application'
Expand Down

0 comments on commit 933b8e2

Please sign in to comment.