Skip to content
This repository was archived by the owner on Jul 7, 2024. It is now read-only.

Commit

Permalink
remove url from index
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonLoir committed Apr 24, 2024
1 parent 5407f37 commit 409abae
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions apps/app/app/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { GestureHandlerRootView } from 'react-native-gesture-handler';
import '../global.css';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { links, trpc, trpcClient, url } from '../utils/api';
import { links, trpc, trpcClient } from '../utils/api';
import { useState } from 'react';
import Scaffold from '../components/Scaffold';
import Workspace from '../utils/workspace/Workspace';
Expand All @@ -15,7 +15,6 @@ import { completionItemSchema } from '@/schemas/exportedSchemas';
import { KeyboardContext } from '../utils/keyboardContext';
import { StatusBar } from 'expo-status-bar';
import MaterialCommunityIcons from 'react-native-vector-icons/MaterialCommunityIcons';
import { Text } from 'react-native';

const queryClient = new QueryClient();

Expand All @@ -34,8 +33,7 @@ export default function IndexPage() {

return (
<>
<Text>{url}</Text>
<StatusBar style='light' backgroundColor='rgb(40,40,40)' />
<StatusBar style='dark' backgroundColor='rgb(40,40,40)' />
<GestureHandlerRootView style={{ flex: 1 }}>
<KeyboardContext.Provider
value={{
Expand Down

0 comments on commit 409abae

Please sign in to comment.