diff --git a/src/Routes.js b/src/Routes.js
index 078e4d82..55ed366a 100644
--- a/src/Routes.js
+++ b/src/Routes.js
@@ -14,6 +14,7 @@ import {
PasswordChangePage,
PasswordForgottenPage,
PaymentMethodsPage,
+ PayoutPreferencesPage,
ProfilePage,
EditProfilePage,
SalesConversationPage,
@@ -173,6 +174,10 @@ class Routes extends React.Component {
exactly
pattern="/account/payment-methods"
component={ PaymentMethodsPage } />
+
(
+
+
+);
diff --git a/src/containers/index.js b/src/containers/index.js
index eb0ce9d5..3fb7b7b8 100644
--- a/src/containers/index.js
+++ b/src/containers/index.js
@@ -12,6 +12,7 @@ import OrderPage from './OrderPage/OrderPage';
import PasswordChangePage from './PasswordChangePage/PasswordChangePage';
import PasswordForgottenPage from './PasswordForgottenPage/PasswordForgottenPage';
import PaymentMethodsPage from './PaymentMethodsPage/PaymentMethodsPage';
+import PayoutPreferencesPage from './PayoutPreferencesPage/PayoutPreferencesPage';
import ProfilePage from './ProfilePage/ProfilePage';
import SalesConversationPage from './SalesConversationPage/SalesConversationPage';
import SearchPage from './SearchPage/SearchPage';
@@ -33,6 +34,7 @@ export {
PasswordChangePage,
PasswordForgottenPage,
PaymentMethodsPage,
+ PayoutPreferencesPage,
ProfilePage,
SalesConversationPage,
SearchPage,