Skip to content

Commit

Permalink
fix cashu screen styles
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsaymoralesb committed Nov 28, 2024
1 parent 808224c commit c45ae7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/mobile/src/modules/CashuWallet/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default ThemedStyleSheet((theme) => ({
padding: Spacing.medium,
borderRadius: 10,
flex: 1,
backgroundColor: 'transparent',
backgroundColor: theme.colors.background,
color: theme.colors.text,
},
modalBackdrop: {
Expand Down
7 changes: 1 addition & 6 deletions apps/mobile/src/screens/Cashu/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
import React from 'react';
import {ScrollView} from 'react-native';

import {CashuView} from '../../modules/CashuWallet';
import {CashuWalletScreenProps} from '../../types';
export const CashuScreen: React.FC<CashuWalletScreenProps> = () => {
return (
<ScrollView showsHorizontalScrollIndicator={false} showsVerticalScrollIndicator={false}>
<CashuView></CashuView>
</ScrollView>
);
return <CashuView></CashuView>;
};

0 comments on commit c45ae7b

Please sign in to comment.