From 74b0929e4d79690394c1217f63e458da5bf7317b Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 17 Oct 2024 18:48:38 +0300 Subject: Logged out improvments (#5771) * fetch all accounts in one go * delete unused component * add safeareaview to logged out layout * add safe area insets to LoggedOut view * add safe area insets to the error boundary * sanitize displaynames/handles * use button for X * increase spacing --- src/view/com/util/ErrorBoundary.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/view/com/util/ErrorBoundary.tsx') diff --git a/src/view/com/util/ErrorBoundary.tsx b/src/view/com/util/ErrorBoundary.tsx index dccd2bbc9..46b94932b 100644 --- a/src/view/com/util/ErrorBoundary.tsx +++ b/src/view/com/util/ErrorBoundary.tsx @@ -1,4 +1,5 @@ import React, {Component, ErrorInfo, ReactNode} from 'react' +import {StyleProp, ViewStyle} from 'react-native' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -9,6 +10,7 @@ import {CenteredView} from './Views' interface Props { children?: ReactNode renderError?: (error: any) => ReactNode + style?: StyleProp } interface State { @@ -37,7 +39,7 @@ export class ErrorBoundary extends Component { } return ( - + ) -- cgit 1.4.1