Skip to content

Commit

Permalink
Rename db helper.
Browse files Browse the repository at this point in the history
related to #48
  • Loading branch information
ivgraai committed Jun 17, 2020
1 parent ca2825b commit 8903f2e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import * as Permissions from 'expo-permissions';
import * as FileSystem from 'expo-file-system';

import AppNavigator from './navigation/AppNavigator';
import DbHelper from './DbHelper';
import DbHelper from './services/DbHelper';
import UserManager from './services/UserManager';

import { createStore } from 'redux';
Expand Down
2 changes: 1 addition & 1 deletion components/GoodList.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";
import { FlatList, View, Text } from "react-native";
import CachedImage from "../components/CachedImage";
import DbHelper from "../DbHelper";
import DbHelper from "../services/DbHelper";
import { styles } from "../constants/styles/GoodList";

class GoodList extends React.PureComponent {
Expand Down
2 changes: 1 addition & 1 deletion screens/DetailsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Utility from "../common/Utility";
import * as Dtos from "../constants/Dtos";
import HttpClient from "../services/HttpClient";
import UserManager from "../services/UserManager";
import DbHelper from "../DbHelper";
import DbHelper from "../services/DbHelper";

interface IProps {
navigation: any;
Expand Down
File renamed without changes.

0 comments on commit 8903f2e

Please sign in to comment.