Skip to content

Commit

Permalink
Remove debug UI (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
NigelBreslaw authored Feb 19, 2024
1 parent 681b9af commit 76e104e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions native_gg/src/screens/Director.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { useEffect, useReducer, useRef } from "react";
import AuthUI from "../authentication/AuthUI.tsx";
import AuthService from "../authentication/AuthService.ts";
import { authReducer, initialAuthState } from "../state/Actions.ts";
import { getItemDefinition, getProfileTest, saveItemDefinition } from "../backend/api.ts";
import StorageGG from "../storage/StorageGG.ts";

export default function Director() {
Expand Down Expand Up @@ -68,11 +67,6 @@ export default function Director() {
<View style={styles.spacer} />
<Button title="Logout" disabled={!state.authenticated} onPress={() => AuthService.logoutCurrentUser()} />
<View style={styles.spacer} />
<Button title="Download Item Definition" onPress={() => saveItemDefinition()} />
<View style={styles.spacer} />
<Button title="Get saved Item Definition" onPress={() => getItemDefinition()} />
<View style={styles.spacer} />
<Button disabled={!state.authenticated} title="getProfile()" onPress={() => getProfileTest()} />
</View>
</ScrollView>
</SafeAreaView>
Expand Down

0 comments on commit 76e104e

Please sign in to comment.