diff --git a/App.tsx b/App.tsx
index 48cf3658c..f262a1363 100644
--- a/App.tsx
+++ b/App.tsx
@@ -77,7 +77,7 @@ import PaymentsSettings from './views/Settings/PaymentsSettings';
import InvoicesSettings from './views/Settings/InvoicesSettings';
import LSP from './views/Settings/LSP';
import ChannelsSettings from './views/Settings/ChannelsSettings';
-import SetNodePicture from './views/Settings/SetNodePicture';
+import SetWalletPicture from './views/Settings/SetWalletPicture';
// Lightning address
import LightningAddress from './views/Settings/LightningAddress';
@@ -831,9 +831,9 @@ export default class App extends React.PureComponent {
}
/>
;
- route: Route<'SetNodePicture', { implementation: string }>;
+ route: Route<'SetWalletPicture', { implementation: string }>;
}
-interface SetNodePictureState {
+interface SetWalletPictureState {
images: string[];
photo: string;
}
-export default class SetNodePicture extends React.Component<
- SetNodePictureProps,
- SetNodePictureState
+export default class SetWalletPicture extends React.Component<
+ SetWalletPictureProps,
+ SetWalletPictureState
> {
- constructor(props: SetNodePictureProps) {
+ constructor(props: SetWalletPictureProps) {
super(props);
const implementation = this.props.route.params?.implementation;
let images: string[] = [
@@ -179,7 +179,7 @@ export default class SetNodePicture extends React.Component<
leftComponent="Back"
centerComponent={{
text: localeString(
- 'views.SetNodePicture.choosePicture'
+ 'views.SetWalletPicture.choosePicture'
),
style: {
color: themeColor('text'),
@@ -251,7 +251,7 @@ export default class SetNodePicture extends React.Component<
/>