Skip to content

Commit

Permalink
[Bug] Fix import of the user guide link (keplergl#1182)
Browse files Browse the repository at this point in the history
Signed-off-by: Wesam Manassra <[email protected]>
  • Loading branch information
manassra authored Jul 10, 2020
1 parent 12a546f commit d5ede95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/demo-app/src/factories/panel-header.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// THE SOFTWARE.

import {PanelHeaderFactory, Icons} from 'kepler.gl/components';
import {BUG_REPORT_LINK, GITHUB_USER_GUIDE} from 'kepler.gl/constants';
import {BUG_REPORT_LINK, USER_GUIDE_DOC} from 'kepler.gl/constants';

export function CustomPanelHeaderFactory(...deps) {
const PanelHeader = PanelHeaderFactory(...deps);
Expand All @@ -38,7 +38,7 @@ export function CustomPanelHeaderFactory(...deps) {
{
id: 'docs',
iconComponent: Icons.Docs,
href: GITHUB_USER_GUIDE,
href: USER_GUIDE_DOC,
blank: true,
tooltip: 'User Guide',
onClick: () => {}
Expand Down

0 comments on commit d5ede95

Please sign in to comment.