chore: add check for Verifiable document store init

other changes:
- add Podfile.lock
- remove debug logs
This commit is contained in:
Harsh Vardhan
2023-07-18 12:13:54 +05:30
parent 7a03aca240
commit ced7fef7b3
3 changed files with 15 additions and 1 deletions

View File

@@ -9,7 +9,6 @@ import { Theme, Spacing } from './styleUtils';
export const Button: React.FC<ButtonProps> = (props) => {
const type = props.type || 'solid' || 'radius' || 'gradient';
console.log('got button props ', props);
const buttonStyle: StyleProp<ViewStyle> = [
props.fill ? Theme.ButtonStyles.fill : null,
Theme.ButtonStyles[type],