Skip to content

Commit

Permalink
fix: imports of services
Browse files Browse the repository at this point in the history
  • Loading branch information
hopetambala committed Jul 27, 2020
1 parent fe3f677 commit a00cacf
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions screens/HomeScreen/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import retrieveHelloFunction from '../../services/parse/crud';
import {
retrieveSignUpFunction, retrieveSignInFunction, retrieveSignOutFunction,
retrieveForgotPasswordFunction, retrieveCurrentUserFunction, retrieveDeleteUserFunction
} from '../services/parse/auth';
import retrievePuenteAutofillData from '../services/aws';
import AutoFill from '../components/AutoFill';
} from '../../services/parse/auth';
import retrievePuenteAutofillData from '../../services/aws';
import AutoFill from '../../components/AutoFill';

import { getTasks } from '../../services/tasky';

Expand Down Expand Up @@ -95,11 +95,11 @@ export default class HomeScreen extends React.Component {
<Text style={styles.text}>Autofill GET</Text>
</TouchableOpacity>
</View>
<AutoFill parameter="City" />
<AutoFill parameter="Province" />
<AutoFill parameter="Communities" />
</ScrollView>
);
<AutoFill parameter="City" />
<AutoFill parameter="Province" />
<AutoFill parameter="Communities" />
</ScrollView>
);
}
}

Expand Down

0 comments on commit a00cacf

Please sign in to comment.