Skip to content

Commit

Permalink
tsc work bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Oct 29, 2024
1 parent 85fd308 commit 5617965
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion views/Routing/Routing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default class Routing extends React.PureComponent<
}
}

renderItem = (item: any) => {
renderItem = ({ item }: { item: any }) => {
const { navigation } = this.props;
return (
<TouchableOpacity
Expand Down
2 changes: 1 addition & 1 deletion views/Settings/Seed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ interface SeedState {
showModal: boolean;
}

const MnemonicWord = (index: any, word: any) => {
const MnemonicWord = ({ index, word }: { index: any; word: any }) => {
const [isRevealed, setRevealed] = useState(false);
return (
<TouchableOpacity
Expand Down

0 comments on commit 5617965

Please sign in to comment.