Skip to content

Commit

Permalink
small cleanup and restructure
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaniewong2 committed Oct 13, 2023
1 parent 954e962 commit 1b74b64
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 34 deletions.
28 changes: 0 additions & 28 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"ts:check": "tsc"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.19.3",
"@react-navigation/native": "^6.1.8",
"@react-navigation/native-stack": "^6.9.14",
"@supabase/supabase-js": "^2.38.0",
Expand Down
3 changes: 1 addition & 2 deletions src/app/(Authentication)/Welcome/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { router } from 'expo-router';
import React from 'react';
import { Text, View } from 'react-native';
import { TouchableOpacity } from 'react-native-gesture-handler';
import { Text, TouchableOpacity, View } from 'react-native';
import styles from './styles';

function WelcomeScreen() {
Expand Down
2 changes: 1 addition & 1 deletion src/app/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Link } from 'expo-router';
import { Text, TouchableOpacity, View } from 'react-native';
import DummyQueries from '../../lib/DummyQueries';
import DummyQueries from '../supabase/DummyQueries';
import styles from './styles';

function StartScreen() {
Expand Down
4 changes: 2 additions & 2 deletions lib/DummyQueries.tsx → src/supabase/DummyQueries.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Text, TouchableOpacity, View } from 'react-native';
import styles from '../src/app/styles';
import supabase from './supabase';
import supabase from '../../lib/supabase';
import styles from '../app/styles';

export default function DummyQueries() {
let queryHolder;
Expand Down
File renamed without changes.

0 comments on commit 1b74b64

Please sign in to comment.