Skip to content

Commit bc21dcb

Browse files
committed
fix(webapp): add api key button
1 parent 578b0de commit bc21dcb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/webapp/src/components/Preferences/PreferencesTopbar.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import UsersActions from '@/containers/Preferences/Users/UsersActions';
99
import CurrenciesActions from '@/containers/Preferences/Currencies/CurrenciesActions';
1010
import WarehousesActions from '@/containers/Preferences/Warehouses/WarehousesActions';
1111
import BranchesActions from '@/containers/Preferences/Branches/BranchesActions';
12+
import ApiKeysActions from '@/containers/Preferences/ApiKeys/ApiKeysActions';
1213
import withDashboard from '@/containers/Dashboard/withDashboard';
1314

1415
import { compose } from '@/utils';
@@ -48,6 +49,11 @@ function PreferencesTopbar({ preferencesPageTitle }) {
4849
path={'/preferences/branches'}
4950
component={BranchesActions}
5051
/>
52+
<Route
53+
exact
54+
path={'/preferences/api-keys'}
55+
component={ApiKeysActions}
56+
/>
5157
</Switch>
5258
</Route>
5359
</div>

0 commit comments

Comments
 (0)