diff --git a/src/components/common/BlurBackground.tsx b/src/components/common/BlurBackground.tsx index 01d0e07c82d..483239ecb8d 100644 --- a/src/components/common/BlurBackground.tsx +++ b/src/components/common/BlurBackground.tsx @@ -6,13 +6,17 @@ import { cacheStyles, Theme, useTheme } from '../services/ThemeContext' const isAndroid = Platform.OS === 'android' -export const BlurBackground = (props: { roundCorners?: boolean }) => { - const { roundCorners = false } = props +export const BlurBackground = (props: { noRoundedCorners?: boolean }) => { + const { noRoundedCorners = false } = props const theme = useTheme() const styles = getStyles(theme) return ( - + ) } diff --git a/src/components/navigation/HeaderBackground.tsx b/src/components/navigation/HeaderBackground.tsx index 449fab94be1..b692bf9336c 100644 --- a/src/components/navigation/HeaderBackground.tsx +++ b/src/components/navigation/HeaderBackground.tsx @@ -17,7 +17,7 @@ export const HeaderBackground = (props: any) => { return ( - + diff --git a/src/components/themed/MenuTabs.tsx b/src/components/themed/MenuTabs.tsx index 3b72a5eb44c..1fbd1294897 100644 --- a/src/components/themed/MenuTabs.tsx +++ b/src/components/themed/MenuTabs.tsx @@ -89,7 +89,7 @@ export const MenuTabs = (props: BottomTabBarProps) => { return ( - + {renderFooter()}