The vault notification mode1

This commit is contained in:
2026-01-31 22:58:51 -04:00
parent 56bb72aab8
commit d64a6557a8
7 changed files with 577 additions and 495 deletions

View File

@@ -112,6 +112,7 @@ export const MOCK_CONFIG = {
USER: {
id: 999,
username: 'MockCaptain',
email: 'captain@sentinel.local',
public_key: 'mock_public_key',
is_admin: true,
guale: false,

View File

@@ -348,7 +348,7 @@ export default function SentinelScreen() {
onRequestClose={() => setShowVault(false)}
>
<View style={styles.vaultModalContainer}>
<VaultScreen />
{showVault ? <VaultScreen /> : null}
<TouchableOpacity
style={styles.vaultCloseButton}
onPress={() => setShowVault(false)}

File diff suppressed because it is too large Load Diff

View File

@@ -77,6 +77,7 @@ export interface ProtocolInfo {
export interface User {
id: number;
username: string;
email?: string;
public_key: string;
is_admin: boolean;
guale: boolean;