Skip to content

Commit 537ac68

Browse files
authored
Merge pull request #695 from PolymathNetwork/fix/disable-vrtm
Fix/disable vrtm
2 parents cb9a723 + 4764a02 commit 537ac68

2 files changed

Lines changed: 14 additions & 13 deletions

File tree

packages/polymath-issuer/src/components/Dashboard.js

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,15 @@ class Dashboard extends Component<Props> {
138138
isActive: location.slice(-11) === '/compliance',
139139
isDisabled: !token || !token.address,
140140
},
141-
{
142-
title: 'Volume Restrictions',
143-
id: 'restriction-nav-link',
144-
icon: icoRestriction,
145-
to: `${tokenUrl}/restrictions`,
146-
isActive: location.slice(-13) === '/restrictions',
147-
isDisabled: !token || !token.address,
148-
},
141+
// {
142+
// title: 'Volume Restrictions',
143+
// id: 'restriction-nav-link',
144+
// icon: icoRestriction,
145+
// to: `${tokenUrl}/restrictions`,
146+
// isActive: location.slice(-13) === '/restrictions',
147+
// // isDisabled: !token || !token.address,
148+
// isDisabled: true,
149+
// },
149150
{
150151
title: 'Dividends',
151152
id: 'dividends-nav-link',

packages/polymath-issuer/src/routes.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ export default [
5454
component: STOPage,
5555
exact: true,
5656
},
57-
{
58-
path: '/dashboard/:id/restrictions',
59-
component: RestrictionsPage,
60-
exact: true,
61-
},
57+
// {
58+
// path: '/dashboard/:id/restrictions',
59+
// component: RestrictionsPage,
60+
// exact: true,
61+
// },
6262
{
6363
path: '/dashboard/:id/compliance',
6464
component: WhitelistPage,

0 commit comments

Comments
 (0)