Build updates & remove testing items.

This commit is contained in:
Patrick Fic
2022-05-12 13:34:54 -07:00
parent 717b75a1b8
commit 451950883a
7 changed files with 60 additions and 60 deletions

View File

@@ -1,8 +1,8 @@
import Constants from "expo-constants";
import React from "react";
import { useTranslation } from "react-i18next";
import { Button, View, Text } from "react-native";
import { Title } from "react-native-paper";
import { View, Text } from "react-native";
import { Title, Button } from "react-native-paper";
import { purgeStoredState } from "redux-persist";
import SignOutButton from "../sign-out-button/sign-out-button.component";
import * as Updates from "expo-updates";
@@ -25,7 +25,7 @@ export default function ScreenSettingsComponent() {
})}
</Title>
<Text>{Updates.releaseChannel}</Text>
<Text>Release Channel {Updates.releaseChannel}</Text>
<SignOutButton />
<Button title="Purge State" onPress={() => purgeStoredState()} />
</View>