Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for minor spelling issues in Init Blox process #350

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/box/src/screens/Blox/Blox.screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const BloxScreen = () => {
}
const handleOnBloxRemovePress = (peerId: string) => {
if (Object.values(bloxs)?.length <= 1) {
Alert.alert('Warning', 'You cannot remove the last Blox!, please first add new Blox, then remove this one from the list.')
Alert.alert('Warning', 'You cannot remove the last Blox! Please first add new Blox, then remove this one from the list.')
return
}
Alert.alert('Remove Blox!', `Are you sure want to remove '${bloxs[peerId]?.name}' from the list?`,
Expand Down
6 changes: 3 additions & 3 deletions apps/box/src/screens/InitialSetup/ConnectToWallet.screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { useLogger } from '../../hooks';
export const ConnectToWalletScreen = () => {
const navigation = useInitialSetupNavigation();
const walletConnect = useWalletConnect();
const [selectedChainId, setSelectedChainId] = useState(1);// defualt is Etherum
const [selectedChainId, setSelectedChainId] = useState(1); // default is Ethereum
const { queueToast } = useToast();
const [networkConfirmed, setNetwordConfirmed] = useState(false)
const [walletId, signiture, password, setWalletId] = useUserProfileStore(
Expand Down Expand Up @@ -122,7 +122,7 @@ export const ConnectToWalletScreen = () => {
Connect To Wallet
</FxText>
<FxBox>
<FxText variant="h200" marginBottom='8'>Select nerwork</FxText>
<FxText variant="h200" marginBottom='8'>Select network</FxText>
<FxPicker selectedValue={selectedChainId}
onValueChange={(itemValue: number) => setSelectedChainId(itemValue)}>
<FxPickerItem key={1} label='Ethereum Mainnet' value={1} />
Expand All @@ -146,7 +146,7 @@ export const ConnectToWalletScreen = () => {
</FxButton>
) : (
<FxButton size="large" onPress={handleConnectToBlox}>
Connect to blox
Connect to Blox
</FxButton>
)}
</FxBox>
Expand Down
2 changes: 1 addition & 1 deletion apps/box/src/screens/InitialSetup/LinkPassword.screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const LinkPasswordScreen = () => {
disabled={!passwordInput}
onPress={handleLinkPassword}
>
{linking ? 'Canncel' : 'Link Password'}
{linking ? 'Cancel' : 'Link Password'}
</FxButton>
)}
</FxBox>
Expand Down
2 changes: 1 addition & 1 deletion apps/box/src/screens/InitialSetup/SetupComplete.screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export const SetupCompleteScreen = () => {
}
{bloxsConnectionStatus[currentBloxPeerId] === 'DISCONNECTED' && internetStatus === 'CONNECTED' && setupStatus === 'NOTCOMPLETED' &&
<FxText variant='bodyMediumRegular' color='warningBase' textAlign='center' paddingHorizontal='16' lineHeight={20}>
Your blox is not reachable, It seems is not connected to the internet! Please turn your blox off and then turn it on and make sure it is on Hotspot mode, then try to reconnect the blox to the Wi-Fi
Your blox is not reachable, seems it is not connected to the internet! Please turn your blox off and then turn it on and make sure it is on Hotspot mode, then try to reconnect the blox to the Wi-Fi
</FxText>
}
</FxBox>
Expand Down
2 changes: 1 addition & 1 deletion apps/box/src/screens/Settings/About.screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const AboutScreen = () => {
<FxBox marginHorizontal="20">
<SubHeaderText>Privacy</SubHeaderText>
<FxText variant="bodySmallRegular">
Functionland's FxBlox hardware is managed and used by the File Sync and Blox apps. Blox and File Sync can be used independently of each other. The Blox app is responsible for managing, controlling and configuring the FxBlox hardware as well as the setup / linking of wallets for to receiving Fula (rewards) tokens. If you have FxBlox hardware, you will need the Blox app. The File Sync app is responsible for utilizing the FxBlox hardware as a decentralized storage solution for your data.
Functionland's FxBlox hardware is managed and used by the File Sync and Blox apps. Blox and File Sync can be used independently of each other. The Blox app is responsible for managing, controlling, and configuring the FxBlox hardware as well as the setup / linking of wallets for receiving Fula (rewards) tokens. If you have FxBlox hardware, you will need the Blox app. The File Sync app is responsible for utilizing the FxBlox hardware as a decentralized storage solution for your data.
</FxText>
</FxBox>
);
Expand Down
2 changes: 1 addition & 1 deletion apps/box/src/screens/Settings/Settings.screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const SettingsScreen = () => {
const walletConnect = useWalletConnect();
const { logError } = useLogger()
const handleLogout = () => {
Alert.alert('Log Out!', 'Are you sure want to log out?\r\nThe local app data will remove!',
Alert.alert('Log Out!', 'Are you sure want to log out?\r\nThe local app data will be removed!',
[{
text: 'Yes',
style: 'destructive',
Expand Down